Test the new artifact workflows #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test artifact actions | |
on: workflow_dispatch | |
jobs: | |
test-upload-download: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Push artifact | |
uses: ./.github/actions/artifact_upload | |
with: | |
path: | | |
hgdfigojedsg | |
name: test-artifact | |
encryption-secret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }} | |
- name: Pull artifact | |
uses: ./.github/actions/artifact_download | |
with: | |
name: test-artifact | |
encryption-secret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }} | |
path: test-upload-folder | |
- name: Cat to see if stuff works. | |
shell: bash | |
run: cat test-upload-folder/test-upload-file; cat test-upload-folder/test-upload-folder/asdf; cat test-upload-folder/test-upload-folder/fdsa; |