-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58176df
commit 870c243
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Release Pipeline | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # Quando fizer merge de 'develop' para 'main', o release será disparado | ||
tags: | ||
- 'v*' # Também se fizer um push com uma tag, como v1.0.0 | ||
|
||
jobs: | ||
release: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Generate Release Notes | ||
run: | | ||
# Gerar notas de release, pode ser customizado | ||
echo "Release Notes" > release_notes.txt | ||
echo "Version: ${{ github.ref }}" >> release_notes.txt | ||
- name: Create Release in GitHub | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: release_notes.txt | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |