Browse Source

Apply linter fixes

pull/231/head
Vince Grassia 3 months ago
parent
commit
5c9a196cac
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08
  1. 4
      .github/workflows/publish.yml
  2. 2
      .github/workflows/release.yml
  3. 4
      .github/workflows/version-bump.yml

4
.github/workflows/publish.yml

@ -25,7 +25,7 @@ jobs:
permissions: permissions:
contents: read contents: read
outputs: outputs:
release-version: ${{ steps.version-output.outputs.version }} release_version: ${{ steps.version-output.outputs.version }}
steps: steps:
- name: Version output - name: Version output
id: version-output id: version-output
@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
needs: setup needs: setup
env: env:
_RELEASE_VERSION: ${{ needs.setup.outputs.release-version }} _RELEASE_VERSION: ${{ needs.setup.outputs.release_version }}
permissions: permissions:
id-token: write id-token: write
packages: write packages: write

2
.github/workflows/release.yml

@ -21,8 +21,6 @@ jobs:
contents: read contents: read
outputs: outputs:
release_version: ${{ steps.version.outputs.version }} release_version: ${{ steps.version.outputs.version }}
branch-name: ${{ steps.branch.outputs.branch-name }}
steps: steps:
- name: Check branch - name: Check branch
if: ${{ inputs.release_type != 'Dry Run' }} if: ${{ inputs.release_type != 'Dry Run' }}

4
.github/workflows/version-bump.yml

@ -144,9 +144,7 @@ jobs:
- name: Push changes - name: Push changes
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }} if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
env: run: git push -u origin ${{ github.ref }}
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
run: git push -u origin $PR_BRANCH
- name: Report upcoming release version to Slack - name: Report upcoming release version to Slack
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' && inputs.enable_slack_notification == true }} if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' && inputs.enable_slack_notification == true }}

Loading…
Cancel
Save