This commit is contained in:
Michał Rudowicz 2025-02-25 20:11:40 +01:00
parent 7efa3470c6
commit 957aeaaeff
2 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@ jobs:
container: container:
image: git.hswro.org/fleg/actions-experiments:latest image: git.hswro.org/fleg/actions-experiments:latest
steps: steps:
- uses: https://codeberg.org/fleg/light-actions/checkout@test5 - uses: https://codeberg.org/fleg/light-actions/checkout@test6
- run: cat README.md - run: cat README.md
upload-artifact: upload-artifact:
runs-on: docker runs-on: docker
@ -14,7 +14,7 @@ jobs:
image: git.hswro.org/fleg/actions-experiments:latest image: git.hswro.org/fleg/actions-experiments:latest
steps: steps:
- run: echo "test passed" > test.txt - run: echo "test passed" > test.txt
- uses: https://codeberg.org/fleg/light-actions/upload-artifact@test5 - uses: https://codeberg.org/fleg/light-actions/upload-artifact@test6
with: with:
path: test.txt path: test.txt
artifact-name: test-artifact artifact-name: test-artifact

View File

@ -13,12 +13,13 @@ runs:
- run: | - run: |
set -euxo pipefail set -euxo pipefail
ARTIFACT_BASE="${ACTIONS_RUNTIME_URL}_apis/pipelines/workflows/${GITHUB_RUN_ID}/artifacts?api-version=6.0-preview" ARTIFACT_BASE="${ACTIONS_RUNTIME_URL}_apis/pipelines/workflows/${GITHUB_RUN_ID}/artifacts?api-version=6.0-preview"
AUTH_HEADER="Authorization: Bearer ${GITHUB_TOKEN}"
RESOURCE_URL="$( RESOURCE_URL="$(
curl \ curl \
-XPOST \ -XPOST \
--silent \ --silent \
--fail-with-body \ --fail-with-body \
--header \'Authorization: Bearer ${GITHUB_TOKEN}\' \ --header ${AUTH_HEADER}\
--header 'Accept: application/json;api-version=6.0-preview' \ --header 'Accept: application/json;api-version=6.0-preview' \
--header 'Content-Type: application/json' \ --header 'Content-Type: application/json' \
--data '{\"type\": \"actions_storage\", \"name\": \"${{ inputs.artifact-name }}\"}' \ --data '{\"type\": \"actions_storage\", \"name\": \"${{ inputs.artifact-name }}\"}' \