Skip to content

Commit

Permalink
Merge pull request #1895 from Steveice10/main
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow for automatically creating releases.
  • Loading branch information
billhollings authored May 10, 2023
2 parents fbaba84 + f19ac2c commit 5bce402
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,25 @@ jobs:
with:
name: "MoltenVK"
path: "MoltenVK.tar"

release:
name: 'Release'

needs: [build]

runs-on: ubuntu-latest

if: ${{ startsWith(github.ref, 'refs/tags/') }}

permissions:
contents: write

steps:
- name: Download Artifacts
uses: actions/download-artifact@v3

- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "MoltenVK/*"
artifactErrorsFailBuild: true

0 comments on commit 5bce402

Please sign in to comment.