Skip to content

Merge branch 'main' of https://github.com/CrezTheHomie/Saga-Of-The-Go… #1

Merge branch 'main' of https://github.com/CrezTheHomie/Saga-Of-The-Go…

Merge branch 'main' of https://github.com/CrezTheHomie/Saga-Of-The-Go… #1

Workflow file for this run

name: Modele Builder
on:
push:
branches:
- main
jobs:
builds:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Zip files
working-directory: ./
run: zip -r ./Saga-Of-The-Goblin-Horde.zip ./*
- name: Get release version
shell: bash
id: get-version
run: "echo ::set-output name=version::$(node ./.github/workflows/get-version.js)"
- name: Create Release
id: create-release
uses: ncipollo/release-action@v1
with: allowUpdates: true

Check failure on line 26 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 26
allowUpdates: true
name: Release ${{ steps.get-version.outputs.version }}
draft: false
prerelease: false
token: ${{secrets.GITHUB_TOKEN}}
artifacts: '.module.zip, .module.json'
tag: ${{ steps.get-version.outputs.version }}