Skip to content

Release

Release #10

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- uses: actions/checkout@v2
- name: Write raw version to env
run: |
echo "VERSION=${GITHUB_REF_NAME#v}" >> "$GITHUB_ENV"
- name: Substitute version in manifest
uses: microsoft/variable-substitution@v1
with:
files: 'system.json'
env:
version: ${{ env.VERSION }}
manifest: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/system.json
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/candelafvtt-${{github.event.release.tag_name}}.zip
- name: Install dependencies and build
run: |

Check failure on line 31 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 31, Col: 20): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
npm install -g yarn
yarn install
sh build.sh ${{ env.VERSION }
- name: Update release with files
uses: ncipollo/release-action@v1
with:
allowUpdates: true
name: ${{ github.event.release.name }}
draft: false
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: 'dist/system.json,dist/candelafvtt-v${{ env.VERSION }}.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}