Skip to content

Commit

Permalink
Test Artifact Upload Action
Browse files Browse the repository at this point in the history
Signed-off-by: Adolfo García Veytia (Puerco) <[email protected]>
  • Loading branch information
puerco committed Jun 13, 2024
1 parent 7696fab commit e9e454a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-artifact.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test Artifact Upload

on:
workflow_dispatch:

jobs:
check-release-notes:
runs-on: ubuntu-latest

#permissions:
# pull-requests: write # needed to read the PR data

steps:
- name: Create Random File
run: |
openssl rand -base64 32 > artifact.txt
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: artifact.txt
path: ${{ github.workspace }}/artifact.txt

0 comments on commit e9e454a

Please sign in to comment.