Skip to content

Commit

Permalink
Merge branch 'w/7.70/bugfix/UTAPI-108-fix-warp-10-release-workflow' i…
Browse files Browse the repository at this point in the history
…nto tmp/octopus/w/8.1/bugfix/UTAPI-108-fix-warp-10-release-workflow
  • Loading branch information
bert-e committed Sep 16, 2024
2 parents 60bf72c + ab6bd65 commit 226920f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release-warp10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,28 @@ on:

jobs:
build:
permissions:
contents: read
packages: write
uses: scality/workflows/.github/workflows/docker-build.yaml@v2
secrets: inherit
with:
name: warp10
context: .
file: images/warp10/Dockerfile
tag: ${{ github.event.inputs.tag }}
tag: ${{ inputs.tag }}
lfs: true

release:
if: ${{ inputs.create-github-release }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: softprops/action-gh-release@v2
- name: Create Github Release for Warp10
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release utapi/warp10:${{ github.event.inputs.tag }}-warp10
target_commitish: ${{ github.sha }}
tag_name: ${{ github.event.inputs.tag }}-warp10
generate_release_notes: false
target_commitish: ${{ github.sha }}

0 comments on commit 226920f

Please sign in to comment.