Skip to content

release 1.1.3

release 1.1.3 #9

Workflow file for this run

'on':
release:
types: [published]
jobs:
release:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
target: linux-x64
- os: macos-latest
target: darwin-x64 darwin-arm64
- os: windows-latest
target: win32-x64
runs-on: '${{ matrix.os }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]
- run: npm install
- run: vsce package --target ${{ matrix.target }} -o renpy-warp-${{ steps.package-version.outputs.current-version}}-${{ matrix.target }}.vsix
- name: create github release
uses: ncipollo/release-action@v1
with:
artifacts: *.vsix

Check failure on line 38 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 38
replacesArtifacts: false
tag: ${{ github.ref_name }}
allowUpdates: true
makeLatest: false
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
- run: npm run publish -- --target ${{ matrix.target }}
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}