name: 'Release: Promote GitHub Releases' run-name: 'Promoting GitHub Release ${{ inputs.version-tag }} to latest' on: workflow_call: inputs: version-tag: required: true type: string workflow_dispatch: inputs: version-tag: description: 'Version tag (e.g. n8n@2.7.0).' required: true type: string permissions: contents: write jobs: promote-github-releases: name: Promote GitHub release to latest runs-on: ubuntu-slim environment: release steps: - name: Generate GitHub App Token id: generate_token uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 with: app-id: ${{ secrets.N8N_ASSISTANT_APP_ID }} private-key: ${{ secrets.N8N_ASSISTANT_PRIVATE_KEY }} - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: token: ${{ steps.generate_token.outputs.token }} fetch-depth: 1 - name: Setup NodeJS uses: ./.github/actions/setup-nodejs with: build-command: '' install-command: pnpm install --frozen-lockfile --dir ./.github/scripts --ignore-workspace - name: Promote GitHub releases env: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} RELEASE_TAG: ${{ inputs.version-tag }} run: node ./.github/scripts/promote-github-release.mjs