Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemand committed Oct 25, 2024
1 parent f4e7713 commit 55a2624
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
database-exporter:
needs: [validate-preconditions]
runs-on: ubuntu-latest
if: github.job == 'database-exporter'
if: contains(fromJSON('["rc", "alpha", "database-exporter"]'), needs.validate-preconditions.outputs.release_type)
environment: release
steps:
- name: Test
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
p2p-bootstrapper:
runs-on: ubuntu-latest
environment: release
if: contains(fromJSON(format('["rc", "alpha", "{0}"]', github.job)), needs.validate-preconditions.outputs.release_type)
if: contains(fromJSON('["rc", "alpha", "p2p-bootstrapper"]'), needs.validate-preconditions.outputs.release_type)
needs: [build-static-binaries, validate-preconditions]
steps:
- name: Download artifact
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
node-windows:
runs-on: windows-latest
needs: [validate-preconditions]
if: contains(fromJSON(format('["rc", "alpha", "{0}"]', github.job)), needs.validate-preconditions.outputs.release_type)
if: contains(fromJSON('["rc", "alpha", "node-windows"]'), needs.validate-preconditions.outputs.release_type)
environment: release
defaults:
run:
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
node-macos:
runs-on: macos-latest-large
needs: [validate-preconditions]
if: contains(fromJSON(format('["rc", "alpha", "{0}"]', github.job)), needs.validate-preconditions.outputs.release_type)
if: contains(fromJSON('["rc", "alpha", "node-macos"]'), needs.validate-preconditions.outputs.release_type)
environment: release
steps:
- name: Checkout Repository
Expand Down Expand Up @@ -485,7 +485,7 @@ jobs:
node-linux:
runs-on: ubuntu-latest
environment: release
if: contains(fromJSON(format('["rc", "alpha", "{0}"]', github.job)), needs.validate-preconditions.outputs.release_type)
if: contains(fromJSON('["rc", "alpha", "node-linux"]'), needs.validate-preconditions.outputs.release_type)
needs: [ build-static-binaries, validate-preconditions, generate-matrix ]
env:
DATA_DIR: './scripts/distribution/ubuntu-packages/template/data'
Expand Down Expand Up @@ -576,7 +576,7 @@ jobs:
docker:
runs-on: ubuntu-latest
environment: release
if: contains(fromJSON(format('["rc", "alpha", "{0}"]', github.job)), needs.validate-preconditions.outputs.release_type)
if: contains(fromJSON('["rc", "alpha", "docker"]'), needs.validate-preconditions.outputs.release_type)
needs: [ build-static-binaries, validate-preconditions, generate-matrix ]
strategy:
matrix:
Expand Down

0 comments on commit 55a2624

Please sign in to comment.