Skip to content

Commit

Permalink
Experiment to upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCurtis committed Jan 27, 2024
1 parent fc04562 commit 548ffcc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/upload_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Upload docs artifact
on: [push]
jobs:
Upload-To-Artifacts:
runs-on: ubuntu-latest
steps:
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: path/to/artifact/world.txt

0 comments on commit 548ffcc

Please sign in to comment.