Adding latest actions/upload-artifact to the deploy.yml

This commit is contained in:
niclaz 2024-09-05 20:15:04 +02:00 committed by GitHub
parent 44a3d4aaa7
commit dd99262707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -20,6 +20,17 @@ permissions:
id-token: write
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Creating artifact placeholder file
run: echo "this is a placeholder file" > artifact.txt
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: w3pn-artifact
path: artifact.txt
build:
runs-on: ubuntu-latest
steps: