Skip to content

modified: .github/workflows/main.yml #9

modified: .github/workflows/main.yml

modified: .github/workflows/main.yml #9

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Zip Release
uses: thedoctor0/zip-release@0.7.6
with:
type: 'zip'
filename: 'package.zip'
exclusions: '*.git* /*style/* /*assets/*'
recursive_exclusions: *.scss

Check failure on line 19 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Create Release
uses: ncipollo/release-action@v1.13.0
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "package.zip"
token: ${{ secrets.GITHUB_TOKEN }}