Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 15, 2024
1 parent bb56516 commit 629c70b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/configtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
runs-on: ubuntu-latest
needs: [init]

outputs:
config: ${{ steps.read.outputs.config }}

steps:
- name: unstash action dir
uses: actions/download-artifact@v4
Expand All @@ -57,13 +60,20 @@ jobs:
name: config

- name: read
run: cat config.json
run: echo 'config=$(cat config.json)' >> $GITHUB_OUTPUT

update:
name: Update
runs-on: ubuntu-latest
needs: [read]

steps:
- name: post
run: echo 'starting ${{ github.job }}'
- name: unstash action dir
uses: actions/download-artifact@v4
with:
name: actions
path: actions

- name: get the config outputs
run: |
echo 'config: ${{ needs.read.outputs.config }}'

0 comments on commit 629c70b

Please sign in to comment.