Skip to content

Commit

Permalink
Merge pull request #91 from dokku/auto-create-release
Browse files Browse the repository at this point in the history
feat: automatically create a release after a tag is generated
  • Loading branch information
josegonzalez authored Sep 14, 2024
2 parents 2fb92fa + 064ab6b commit ce1c837
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 ce1c837

Please sign in to comment.