Skip to content

Commit

Permalink
trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alpetric committed Oct 14, 2024
1 parent f040c51 commit 89b51bf
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build-publish-rh-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,21 @@ jobs:
- uses: shrink/actions-docker-extract@v3
id: extract-ee
with:
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee-rhel9:${{ steps.meta-ee-public.outputs.tags.sha}}-amd64
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee-rhel9:${{ steps.meta-ee-public.outputs.tags}}-amd64
path: "/windmill/target/release/windmill"

- name: Rename binary with corresponding architecture
run: |
mv "${{ steps.extract-ee.outputs.destination }}/windmill" "${{ steps.extract-ee.outputs.destination }}/windmill-ee-amd64-rhel9"
- name: Attach binary to release
uses: softprops/action-gh-release@v2
# - name: Attach binary to release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')
# with:
# files: |
# ${{ steps.extract-ee.outputs.destination }}/windmill-ee-amd64-rhel9

- uses: actions/upload-artifact@v4
with:
files: |
${{ steps.extract-ee.outputs.destination }}/windmill-ee-amd64-rhel9
name: RHEL9-amd64 build
path: ${{ steps.extract-ee.outputs.destination }}/windmill-ee-amd64-rhel9

0 comments on commit 89b51bf

Please sign in to comment.