diff options
| author | Selene ToyKeeper | 2025-05-10 03:52:30 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2025-05-10 03:52:30 -0600 |
| commit | 979a582b8e5fe9d24f1d0232a4d001e0ed2e19e6 (patch) | |
| tree | 3c4a4aa9c697194fdb398c464f882634c1c9bfbf /.github/workflows | |
| parent | fixed model number of hank-lume-x1 in MODELS (diff) | |
| download | anduril-979a582b8e5fe9d24f1d0232a4d001e0ed2e19e6.tar.gz anduril-979a582b8e5fe9d24f1d0232a4d001e0ed2e19e6.tar.bz2 anduril-979a582b8e5fe9d24f1d0232a4d001e0ed2e19e6.zip | |
fix "Error: Missing download info for actions/upload-artifact@v3"
Apparently that got deprecated and removed. Seems like something
GitHub should maybe notify users about before removing it, instead of
finding out through a build failure plus googling the error message.
But it seems to be a trivial fix, at least.
https://github.com/orgs/community/discussions/152695
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/compile.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index c77ac85..629f7e1 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -52,7 +52,7 @@ jobs: echo "ARTIFACT_NAME=${GITHUB_WORKFLOW}-$(git rev-parse --short ${GITHUB_SHA})-${GITHUB_RUN_NUMBER}" >> "${GITHUB_ENV}" - name: Store Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} if-no-files-found: error |
