Skip to content

Commit

Permalink
generate upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuatrai-labs committed Aug 13, 2024
1 parent 3d119fa commit f0c3ac9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,20 @@ jobs:

- name: get the new version
run: echo "New version is available ${{ steps.increment-tag.outputs.new-version }}"

- name: generate artifact file
run: mkdir -p artifacts_files && echo "Generating artifact file" >> artifacts_files/test.txt

- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: samples artifact files
path: artifacts_files

- name: download artifacts
uses: actions/download-artifact@v3
with:
name: samples artifact files

- name: test artifact
run: ls -R

0 comments on commit f0c3ac9

Please sign in to comment.