From fb896f1e908078c09fee8f87554bebdd84153fc2 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Fri, 19 Apr 2024 11:48:54 +0200 Subject: [PATCH] chore: Move actions to staging branch of fuzzypixelz/ci --- .github/workflows/release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5ff3fd2f9..2c542a811c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,14 +37,14 @@ jobs: branch: ${{ steps.create-release-branch.outputs.branch }} steps: - id: create-release-branch - uses: eclipse-zenoh/ci/create-release-branch@main + uses: fuzzypixelz/ci/create-release-branch@staging with: repo: ${{ github.repository }} live-run: ${{ inputs.live-run || false }} version: ${{ inputs.version }} github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }} - - uses: eclipse-zenoh/ci/bump-crates@main + - uses: fuzzypixelz/ci/bump-crates@staging with: repo: ${{ github.repository }} version: ${{ steps.create-release-branch.outputs.version }} @@ -56,7 +56,7 @@ jobs: build-debian: name: Build Debian packages needs: tag - uses: eclipse-zenoh/ci/.github/workflows/build-crates-debian.yml@main + uses: fuzzypixelz/ci/.github/workflows/build-crates-debian.yml@staging with: repo: ${{ github.repository }} version: ${{ needs.tag.outputs.version }} @@ -66,7 +66,7 @@ jobs: build-standalone: name: Build executables and libraries needs: tag - uses: eclipse-zenoh/ci/.github/workflows/build-crates-standalone.yml@main + uses: fuzzypixelz/ci/.github/workflows/build-crates-standalone.yml@staging with: repo: ${{ github.repository }} version: ${{ needs.tag.outputs.version }} @@ -80,7 +80,7 @@ jobs: cargo: needs: tag name: Publish Cargo crates - uses: eclipse-zenoh/ci/.github/workflows/release-crates-cargo.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-cargo.yml@staging with: repo: ${{ github.repository }} live-run: ${{ inputs.live-run || false }} @@ -91,7 +91,7 @@ jobs: debian: name: Publish Debian packages needs: [tag, build-debian] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-debian.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-debian.yml@staging with: no-build: true live-run: ${{ inputs.live-run || false }} @@ -103,7 +103,7 @@ jobs: homebrew: name: Publish Homebrew formulae needs: [tag, build-standalone] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-homebrew.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-homebrew.yml@staging with: no-build: true repo: ${{ github.repository }} @@ -124,7 +124,7 @@ jobs: eclipse: name: Publish artifacts to Eclipse downloads needs: [tag, build-standalone] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-eclipse.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-eclipse.yml@staging with: no-build: true live-run: ${{ inputs.live-run || false }} @@ -141,7 +141,7 @@ jobs: github: name: Publish artifacts to GitHub Releases needs: [tag, build-standalone] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-github.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-github.yml@staging with: no-build: true live-run: ${{ inputs.live-run || false }} @@ -157,7 +157,7 @@ jobs: dockerhub: name: Publish container image to DockerHub needs: [tag, build-standalone] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-dockerhub.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-dockerhub.yml@staging with: no-build: true live-run: true @@ -179,7 +179,7 @@ jobs: ghcr: name: Publish container image to GitHub Container Registry needs: [tag, build-standalone] - uses: eclipse-zenoh/ci/.github/workflows/release-crates-ghcr.yml@main + uses: fuzzypixelz/ci/.github/workflows/release-crates-ghcr.yml@staging with: no-build: true live-run: true