Add use-template #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create and Upload Artifact | |
on: [push] | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Create a text file | |
run: echo "Hello world" > artifact_text.txt | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: my-artifact | |
path: artifact_text.txt |