Skip to content

fix: sync elixir versions, add usage section (#40) #36

fix: sync elixir versions, add usage section (#40)

fix: sync elixir versions, add usage section (#40) #36

Workflow file for this run

---
name: Release
on:
push:
branches:
- main
jobs:
Please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- id: release
name: Release
uses: google-github-actions/release-please-action@v3
with:
command: manifest
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json
release-type: simple
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- if: ${{ steps.release.outputs.release_created }}
name: Checkout
uses: actions/checkout@v3
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 doomspork
git config user.email [email protected]
git tag -d latest || true
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 :latest || 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 latest -m "chore(main): release latest"
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 latest
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}