Skip to content

chore(deps): bump github.com/go-git/go-git/v5 from 5.4.2 to 5.11.0 in /build #15

chore(deps): bump github.com/go-git/go-git/v5 from 5.4.2 to 5.11.0 in /build

chore(deps): bump github.com/go-git/go-git/v5 from 5.4.2 to 5.11.0 in /build #15

Workflow file for this run

name: Artifact
on:
pull_request:
types: [opened, reopened]
branches: [main]
workflow_dispatch:
jobs:
artifact:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Get Info
run: |
echo "id=$(jq -r '.id' plugin.json)" >> $GITHUB_OUTPUT
echo "version=$(jq -r '.version' plugin.json)" >> $GITHUB_OUTPUT
id: info
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18.16.1
- name: Build Plugin
run: |
export NODE_OPTIONS=--openssl-legacy-provider
make dist
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.info.outputs.id }}-${{ steps.info.outputs.version }}
path: dist/${{ steps.info.outputs.id }}-${{ steps.info.outputs.version }}.tar.gz