Skip to content

Bump actions/upload-artifact from 4 to 5 #43

Bump actions/upload-artifact from 4 to 5

Bump actions/upload-artifact from 4 to 5 #43

Workflow file for this run

name: Artifacts
on: push
jobs:
upload:
runs-on: ubuntu-latest
steps:
- run: date > date.txt
- uses: actions/upload-artifact@v5
with:
name: uploaded
path: date.txt
retention-days: 7
download:
runs-on: ubuntu-latest
needs: [upload]
steps:
- uses: actions/download-artifact@v5
with:
name: uploaded
path: downloaded
- run: cat downloaded/date.txt