Skip to content

Update Inochi2D to 0.8.6 #1

Update Inochi2D to 0.8.6

Update Inochi2D to 0.8.6 #1

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and Release
on:
push:
# Push all normally versioned tags
tags:
- 'v*'
permissions:
contents: write
jobs:
# Demo Build
build-demo:
uses: './.github/workflows/build.yml'
with:
target_ref: '${{ github.ref_name }}'
variant: 'demo'
generate_version: true
gh-publish:
needs: build-demo
uses: './.github/workflows/publish-gh.yml'

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

View workflow run for this annotation

GitHub Actions / Build and Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 28, Col: 11): Input tag is required, but not provided while calling. .github/workflows/release.yml (Line: 28, Col: 11): Input name is required, but not provided while calling.
# Full Release
# This needs "gh-publish-demo" due to the fact that
# we need to overwrite the artifacts related.
build-full:
if: ${{ ! contains(github.ref_name, 'rc') }}
needs: gh-publish
uses: './.github/workflows/build.yml'
with:
target_ref: '${{ github.ref_name }}'
variant: 'full'
generate_version: true
itch-publish:
needs: build-full
uses: './.github/workflows/publish-itch.yml'
secrets: inherit
steam-publish:
needs: build-full
uses: './.github/workflows/publish-steam.yml'
secrets: inherit
with:
branch: 'staging'
# Delete artifacts after use.
cleanup:
if: 'always()'
runs-on: ubuntu-latest
needs: [itch-publish, steam-publish, gh-publish]
steps:
- uses: GeekyEggo/delete-artifact@v5
with:
name: |
*