Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,3 +302,26 @@ jobs:
run: |
echo "Imagem publicada: ${{ secrets.DOCKER_USERNAME }}/bemvindo:${{ github.ref_name }}"
echo "Tags: ${{ steps.meta.outputs.tags }}"

# ─── Criar GitHub Release ─────────────────────────────────────────────────
github-release:
name: Criar GitHub Release
runs-on: ubuntu-latest
needs: docker-push
timeout-minutes: 10
permissions:
contents: write

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Criar release no GitHub
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release create "${{ github.ref_name }}" \
--title "Release ${{ github.ref_name }}" \
--generate-notes \
--verify-tag
Loading