Update Inochi2D to 0.8.6 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 GitHub Actions / Build and ReleaseInvalid workflow file
|
||
# 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: | | ||
* |