Skip to content

Commit

Permalink
chore: Move actions to staging branch of fuzzypixelz/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz committed Apr 19, 2024
1 parent 279317c commit fb896f1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fb896f1

Please sign in to comment.