Skip to content

GHA: Update softprops/action-gh-release to v3 (#35) #22

GHA: Update softprops/action-gh-release to v3 (#35)

GHA: Update softprops/action-gh-release to v3 (#35) #22

Workflow file for this run

name: Push
on: [push]
jobs:
check-format:
uses: ./.github/workflows/format.yml
build:
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/build.yml
with:
version-suffix: ${{ github.sha }}
archive-suffix: ${{ github.sha }}
build-release:
if: startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/tags/nightly'
uses: ./.github/workflows/build.yml
with:
version-suffix: ''
archive-suffix: ${{ github.ref_name }}
nightly-release:
if: github.ref == 'refs/heads/master'
needs: build
uses: ./.github/workflows/nightly-release.yml
release:
if: startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/tags/nightly'
needs: build-release
uses: ./.github/workflows/release.yml