Release Beta satyakigh workflow_dispatch #56
This file contains hidden or 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 Beta | |
| run-name: Release Beta ${{ inputs.version }} ${{ github.actor }} ${{ github.event_name }} | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| create-beta-tag: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| outputs: | |
| tag: ${{ steps.version-and-tag.outputs.tag }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: 'main' | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Configure Git | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Tag | |
| id: version-and-tag | |
| run: | | |
| PKG_VERSION=$(jq -r .version package.json) | |
| FULL_TAG="v${PKG_VERSION}-beta" | |
| git tag "$FULL_TAG" | |
| git push origin "$FULL_TAG" | |
| echo "Created tag from branch=$(git rev-parse --abbrev-ref HEAD), commit=$(git rev-parse HEAD), tag=$(git describe --tags --exact-match)" | |
| echo "tag=$FULL_TAG" >> $GITHUB_OUTPUT | |
| call-release: | |
| needs: [create-beta-tag] | |
| uses: ./.github/workflows/release.yml | |
| permissions: | |
| contents: write | |
| with: | |
| tag: ${{ needs.create-beta-tag.outputs.tag }} |