diff --git a/.devcontainer/post-action-command.sh b/.devcontainer/post-action-command.sh new file mode 100644 index 000000000..be087e784 --- /dev/null +++ b/.devcontainer/post-action-command.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +.devcontainer/post-create-command.sh + +python test_pull_from_gdrive.py diff --git a/.github/workflows/verify-gdrive.yml b/.github/workflows/verify-gdrive.yml index f5c79386b..5693a2047 100644 --- a/.github/workflows/verify-gdrive.yml +++ b/.github/workflows/verify-gdrive.yml @@ -11,11 +11,12 @@ jobs: GDRIVE_FOLDER: ${{ vars.GDRIVE_FOLDER }} steps: - uses: actions/checkout@v3 + - name: Build dev container + uses: ./.devcontainer - name: Test pull from gdrive uses: ./.devcontainer with: - entrypoint: python - args: test_pull_from_gdrive.py + entrypoint: ./.devcontainer/post-action-command.sh - name: Archive pulled files uses: actions/upload-artifact@v3 with: