Skip to content

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 #60

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 #60

Workflow file for this run

name: Push Tag
on:
pull_request:
types:
- closed
branches:
- "main"
permissions:
contents: write
jobs:
push-tag:
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/')
runs-on: ubuntu-latest
steps:
- name: Generate App Token
uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3
id: app-token
with:
app-id: ${{ secrets.APP_ID_BLENDFACTORY_TAG_PUSHER }}
private-key: ${{ secrets.PRIVATE_KEY_BLENDFACTORY_TAG_PUSHER }}
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
token: ${{ steps.app-token.outputs.token }}
- name: Extract Version
id: extract-version
run: .github/scripts/extract-version.sh
- name: Push Tag
run: .github/scripts/push-tag.sh
env:
VERSION: ${{ steps.extract-version.outputs.version }}