Skip to content

chore: bump actions/upload-artifact from 4.3.3 to 7.0.1 in the github-actions group across 1 directory #221

chore: bump actions/upload-artifact from 4.3.3 to 7.0.1 in the github-actions group across 1 directory

chore: bump actions/upload-artifact from 4.3.3 to 7.0.1 in the github-actions group across 1 directory #221

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
branches: [integration]
permissions: {}
jobs:
release:
if: github.head_ref == 'release' && github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Generate bot token
id: generate-token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
persist-credentials: true
token: ${{ steps.generate-token.outputs.token }}
- uses: knope-dev/action@19617851f9f13ab2f27a05989c55efb18aca3675 # v2.1.2
with:
version: 0.22.3
- name: Create Release
run: knope release --verbose
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}