Skip to content

Commit

Permalink
Merge pull request #81 from actions/artifacts-next
Browse files Browse the repository at this point in the history
Use artifacts v4
  • Loading branch information
TooManyBees committed Dec 19, 2023
2 parents a753861 + 2a5c144 commit 0252fc4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-hosted-runners.yml
Expand Up @@ -31,12 +31,13 @@ jobs:
- name: Upload Pages artifact
uses: ./
with:
name: pages-artifact-${{ matrix.os }}
path: artifact

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: github-pages
name: pages-artifact-${{ matrix.os }}
path: artifact2

- name: Extract artifact
Expand Down
7 changes: 6 additions & 1 deletion action.yml
Expand Up @@ -14,6 +14,10 @@ inputs:
description: "Duration after which artifact will expire in days."
required: false
default: "1"
outputs:
artifact_id:
description: "The ID of the artifact that was uploaded."
value: ${{ steps.upload-artifact.outputs.artifact-id }}
runs:
using: composite
steps:
Expand Down Expand Up @@ -63,7 +67,8 @@ runs:
INPUT_PATH: ${{ inputs.path }}

- name: Upload artifact
uses: actions/upload-artifact@v3
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.name }}
path: ${{ runner.temp }}/artifact.tar
Expand Down

0 comments on commit 0252fc4

Please sign in to comment.