Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
trungkodekloud committed Dec 6, 2023
0 parents commit 072a0d6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Workflow Demo

on: [push]

jobs:
build:
runs-on: ubuntu-latest

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

- name: Create a text file
run: echo "Hello, world!" > hello.txt

- name: Archive text file
uses: actions/upload-artifact@v2
with:
name: hello-artifact
path: hello.txt
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# artifacts-hands-on

0 comments on commit 072a0d6

Please sign in to comment.