Skip to content

v2.0-a2

v2.0-a2 #5

Workflow file for this run

name: Release
on:
release:
types: [created ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
sudo apt-get update
sudo apt-get install -y zip
chmod +x build.sh
./build.sh
- name: Upload Release Assets
uses: softprops/action-gh-release@v1
with:
tag: ${{ github.ref }} # Use the tag that triggered the workflow
files: release/*.zip

Check failure on line 26 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: 26, Col: 9): Unexpected value 'files'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}