Changing Release Workflow #1
Workflow file for this run
This file contains 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: Publish Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: The branch to release from. | ||
required: true | ||
default: master | ||
push: | ||
branches: | ||
- 'adding-reversing-labs-scanner' | ||
permissions: | ||
contents: read | ||
id-token: write # This is required for requesting the JWT | ||
jobs: | ||
rl-scanner: | ||
uses: ./.github/workflows/rl-scanner.yml | ||
with: | ||
ruby-version: 3.2 | ||
secrets: | ||
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }} | ||
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }} | ||
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }} | ||
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }} | ||
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }} | ||
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }} | ||
publish: | ||
uses: ./.github/workflows/ruby-release.yml | ||
needs: rl-scanner | ||
runs-on: ubuntu-latest | ||
Check failure on line 35 in .github/workflows/publish.yml GitHub Actions / Publish ReleaseInvalid workflow file
|
||
environment: release | ||
with: | ||
ruby-version: 3.2 | ||
secrets: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
rubygems-token: ${{ secrets.RUBYGEMS_AUTH_TOKEN }} |