Added artifctory to upload and download files #15
This file contains hidden or 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: my first workflow | |
| on: push | |
| jobs: | |
| first_job: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v5 | |
| - name: welcome list read | |
| run: | | |
| echo "My first github action job" | |
| ls -la | |
| cat README.md | |
| - name: Generate ASCII | |
| run: cowsay -f dragon "Run for cover, I am dragon" >> dragon.txt | |