Skip to content

Commit

Permalink
fix: Artefact
Browse files Browse the repository at this point in the history
  • Loading branch information
GoetzGoerisch committed Jul 20, 2023
1 parent d1f862d commit 8e4694e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,25 @@ jobs:
docker compose up -d
./waitForContainer.sh
python -m unittest discover test_mqtt_sampleserver
release:
runs-on: ubuntu-22.04
needs: [ build-linux , build-windows ]
if: github.ref != 'refs/heads/development'
steps:
- name: Download artifact
uses: dawidd6/action-download-artifact@v2.27.0
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: build.yml
workflow_conclusion: success
repo: ${{ github.repository }}
if_no_artifact_found: fail
skip_unpack: true
- name: Check
run: echo ${{ github.sha }} > sha.txt
- name: Test
run: cat sha.txt | grep $GITHUB_SHA
- name: Display structure of downloaded files
run: ls -R

0 comments on commit 8e4694e

Please sign in to comment.