Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Jul 10, 2023
1 parent 2916b03 commit f18b85a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
tag: ${{ steps.ids.outputs.tag }}
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -48,13 +49,17 @@ jobs:

strategy:
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}

# name: ${{ matrix.name }}
# name: ${{ matrix.name }}

steps:
- name: Show version
run: echo "${{ needs.configure.outputs.tag }}"

- name: Components release
run: echo "${{ matrix }}"
run: echo "${{ matrix.name }}"
# run: ./bin/release.sh ${{ steps.ids.outputs.tag }}

- name: Info
run: echo "${{ toJson(matrix) }}"
# run: ./bin/release.sh ${{ steps.ids.outputs.tag }}

0 comments on commit f18b85a

Please sign in to comment.