Skip to content

Commit

Permalink
Add creation of scripts and plugins directory in publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Aug 6, 2022
1 parent 8e68ac8 commit 9f0af79
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ jobs:
echo "nightly.${{ needs.setup.outputs.date }}" > artifacts-${{ matrix.runtime }}/VERSION
echo ${{ github.sha }} > artifacts-${{ matrix.runtime }}/COMMIT
cp LICENSE artifacts-${{ matrix.runtime }}
- name: Create data directory
run: mkdir artifacts-${{ matrix.runtime }}/data
- name: Create data, scripts, and plugins directories
run: |
mkdir artifacts-${{ matrix.runtime }}/data
mkdir artifacts-${{ matrix.runtime }}/scripts
mkdir artifacts-${{ matrix.runtime }}/plugins
- name: Compress
run: zip ${{ matrix.runtime }}-nightly.${{ needs.setup.outputs.date }}.zip artifacts-${{ matrix.runtime }}/*
- name: Store artifacts
Expand Down

0 comments on commit 9f0af79

Please sign in to comment.