Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ on:

jobs:
get-configs:
name: Get Configs
uses: ./.github/workflows/configs.yml

promote:
name: Prepare Main and Promote to Beta
promote-main-to-beta:
needs: [get-configs]
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -67,9 +65,8 @@ jobs:
git push origin beta
fi

release:
name: Build, Tag, and Release Beta
needs: [promote]
build-tag-release-beta:
needs: [promote-main-to-beta]
uses: ./.github/workflows/release.yml
permissions:
contents: write
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ on:

jobs:
get-configs:
name: Get Configs
uses: ./.github/workflows/configs.yml

build-test-nodejs:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:

jobs:
define-matrix:
name: Build Matrix
runs-on: ubuntu-latest
outputs:
build-matrix: ${{ steps.set-matrix.outputs.matrix }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ on:

jobs:
build-and-test:
name: Build and Test Application
uses: ./.github/workflows/build-and-test.yml
8 changes: 3 additions & 5 deletions .github/workflows/prod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ on:
default: 'No'

jobs:
promote:
name: Promote Beta to Prod
promote-beta-to-prod:
if: github.event.inputs.confirm-prod-promotion == 'Yes'
runs-on: ubuntu-latest
permissions:
Expand All @@ -39,9 +38,8 @@ jobs:
git push origin prod
fi

release:
name: Build, Tag, and Release Prod
needs: [promote]
build-tag-release-prod:
needs: [promote-beta-to-prod]
uses: ./.github/workflows/release.yml
permissions:
contents: write
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,12 @@ on:

jobs:
get-configs:
name: Get Configs
uses: ./.github/workflows/configs.yml

get-build-matrix:
name: Get Build Matrix
uses: ./.github/workflows/build-matrix.yml

build-and-test:
name: Build and Test
needs: [get-configs, get-build-matrix]
uses: ./.github/workflows/build-and-test.yml
strategy:
Expand All @@ -41,7 +38,6 @@ jobs:
arch: ${{ matrix.arch }}

version-and-tag:
name: Release Tag
runs-on: ubuntu-latest
needs: [get-configs, build-and-test]
permissions:
Expand Down Expand Up @@ -77,7 +73,6 @@ jobs:
echo "tag=$FULL_TAG" >> $GITHUB_OUTPUT

release:
name: Release
needs: [get-configs, get-build-matrix, version-and-tag]
permissions:
contents: write
Expand Down
Loading