Skip to content

Commit

Permalink
feat: automatically create a release after a tag is generated
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Sep 14, 2024
1 parent 2fb92fa commit 064ab6b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand All @@ -46,3 +45,8 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Create Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true

0 comments on commit 064ab6b

Please sign in to comment.