feat: remove tool versions action with new native setup-beam feature … #35
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
--- | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
please: | |
name: Please | |
runs-on: ubuntu-latest | |
steps: | |
- id: release | |
name: Release | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
release-type: node | |
package-name: actions-elixir | |
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
extra-files: | | |
docker-build/README.md | |
setup/README.md | |
README.md | |
- if: ${{ steps.release.outputs.release_created }} | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.release.outputs.tag_name }} | |
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
persist-credentials: true | |
- if: ${{ steps.release.outputs.release_created }} | |
name: Tag | |
run: | | |
git config user.name stord-engineering-account | |
git config user.email engineering@stord.com | |
git tag -d v${{ steps.release.outputs.major }} || true | |
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
git push origin :v${{ steps.release.outputs.major }} || true | |
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
git tag -a v${{ steps.release.outputs.major }} -m "chore(main): release ${{ steps.release.outputs.major }}" | |
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "chore(main): release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" | |
git push origin v${{ steps.release.outputs.major }} | |
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} |