Skip to content

Test the new artifact workflows #13

Test the new artifact workflows

Test the new artifact workflows #13

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: test-upload-file
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 }}
- name: Cat file
shell: bash
run: cat test-upload-file