Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopocarlini committed Oct 18, 2023
1 parent 28c7c2c commit ab4369b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,27 @@ jobs:
semver: 'minor'
current_version: ${{ env.version }}

- name: Push New Version
shell: bash
run: |
echo ${{ steps.bump_version.outputs.new_version }} > ./version.txt
git add .
git config --global user.email "github-bot@pagopa.it"
git config --global user.name "pagopa-github-bot"
git commit -m "Bump to version ${{ steps.bump_version.outputs.new_version }} [skip ci]" || exit 0
git push origin ${{ github.ref_name }}
- name: Create Release
uses: ncipollo/release-action@v1.12.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit: ${{ github.ref_name }}
tag: ${{ steps.bump_version.outputs.new_version }}
name: Release ${{ steps.bump_version.outputs.new_version }}
makeLatest: latest
generateReleaseNotes: true

- name: Build and Push
id: semver
uses: pagopa/github-actions-template/ghcr-build-push@v1.5.4
Expand Down

0 comments on commit ab4369b

Please sign in to comment.