Skip to content

Commit 2905351

Browse files
authored
Update unified release to use envvars
1 parent cf2e2b1 commit 2905351

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/unified-release.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ jobs:
1616
assemble:
1717
name: Assemble
1818
runs-on: ubuntu-latest
19-
strategy:
20-
fail-fast: false
21-
matrix:
22-
stack_version: ['8.2.0-SNAPSHOT']
23-
19+
env:
20+
STACK_VERSION: 8.2.0-SNAPSHOT
2421
steps:
2522
- name: Checkout
2623
uses: actions/checkout@v2
27-
- run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
28-
name: Assemble ${{ matrix.stack_version }}
24+
- name: "Assemble ${{ env.STACK_VERSION }}"
25+
run: "./.ci/make.sh assemble ${{ env.STACK_VERSION }}"

0 commit comments

Comments
 (0)