Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
ci: Create release on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bjw-s committed Jul 27, 2023
1 parent d59c07e commit 3eff373
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: false

permissions:
contents: read
contents: write
packages: write

jobs:
Expand Down Expand Up @@ -58,3 +58,10 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Create GitHub release
# Create a release when a tag is pushed
if: success() && startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

0 comments on commit 3eff373

Please sign in to comment.