Skip to content

Commit

Permalink
Create create-artifact.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jtamsut authored Apr 23, 2024
1 parent 41f7db3 commit fa6f69f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/create-artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create Artifact

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Create artifact
- run: echo "Hello, World!" > hello.txt

- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: ./hello.txt

0 comments on commit fa6f69f

Please sign in to comment.