Skip to content

Commit

Permalink
Create artefact_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhardej committed Jan 24, 2024
1 parent 370584e commit 2ed126b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/artefact_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create Test Artifact

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create a file
run: echo "Hello, World!" > test.txt

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: test-artifact
path: test.txt

0 comments on commit 2ed126b

Please sign in to comment.