Compare commits

...

1 Commits

Author SHA1 Message Date
Taylor McKinnon 943b2f239b remove secrets: inherit 2024-05-15 10:26:28 -07:00
1 changed files with 13 additions and 14 deletions

View File

@ -23,7 +23,6 @@ on:
jobs: jobs:
build: build:
uses: scality/workflows/.github/workflows/docker-build.yaml@v2 uses: scality/workflows/.github/workflows/docker-build.yaml@v2
secrets: inherit
with: with:
namespace: ${{ github.repository_owner }} namespace: ${{ github.repository_owner }}
name: ${{ github.event.repository.name }} name: ${{ github.event.repository.name }}
@ -31,16 +30,16 @@ jobs:
file: ${{ github.event.inputs.dockerfile}} file: ${{ github.event.inputs.dockerfile}}
tag: ${{ github.event.inputs.tag }} tag: ${{ github.event.inputs.tag }}
release: # release:
if: ${{ inputs.create-github-release }} # if: ${{ inputs.create-github-release }}
runs-on: ubuntu-latest # runs-on: ubuntu-latest
needs: build # needs: build
steps: # steps:
- uses: softprops/action-gh-release@v2 # - uses: softprops/action-gh-release@v2
env: # env:
GITHUB_TOKEN: ${{ github.token }} # GITHUB_TOKEN: ${{ github.token }}
with: # with:
name: Release ${{ github.event.inputs.tag }} # name: Release ${{ github.event.inputs.tag }}
tag_name: ${{ github.event.inputs.tag }} # tag_name: ${{ github.event.inputs.tag }}
generate_release_notes: true # generate_release_notes: true
target_commitish: ${{ github.sha }} # target_commitish: ${{ github.sha }}