Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix download node and node-dev binary to docker (#30)
  • Loading branch information
mosonyi committed Sep 23, 2021
commit 7adae0db984379fa636b77ff37c1d1d72b807e56
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,12 +349,17 @@ jobs:
uses: actions/download-artifact@v2
with:
name: integritee-node-dev-${{ github.sha }}
path: integritee-node-dev

- name: Download Integritee Collator
uses: actions/download-artifact@v2
with:
name: integritee-node-${{ github.sha }}
path: integritee-node

- name: Display structure of downloaded files
run: ls -R

- name: Create required package.json
run: test -f package.json || echo '{}' >package.json

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/delete-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:

# Unfortunately accessing the repo with personal access token is not possible
# Workaround: disable 2FA and user password instead of TOKEN
# Update: if 2FA is disabled TOKEN works as well.
- name: Delete docker tag
run: |
ORGANIZATION="integritee"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Download integritee-node from release
- name: Download ${{ matrix.binary }} from release
uses: dsaltares/fetch-gh-release-asset@master
with:
version: "tags/${{ github.event.release.tag_name }}"
Expand Down