Skip to content

Commit

Permalink
Fix release 2.10.0
Browse files Browse the repository at this point in the history
Issue: ZENKO-4876
  • Loading branch information
francoisferrand committed Sep 27, 2024
0 parents commit 98031aa
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/fix-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Fix release

on:
push:
branches-ignore:
- 'development/**'
- 'q/*'

jobs:
fix-release:
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
echo -n "SUCCESSFUL" > .final_status
curl -u "${ARTIFACTS_USER}:${ARTIFACTS_PASSWORD}" ${ARTIFACTS_URL}/upload/${ARTIFACT_NAME}/.final_status/.final_status \
--upload-file .final_status
env:
ARTIFACTS_USER: ${{ secrets.ARTIFACTS_USER }}
ARTIFACTS_PASSWORD: ${{ secrets.ARTIFACTS_PASSWORD }}
ARTIFACTS_URL: https://artifacts.scality.net
ARTIFACT_NAME: github:scality:Zenko:staging-e1a6126af4.build-iso-and-end2end-test.5907

0 comments on commit 98031aa

Please sign in to comment.