diff --git a/.github/workflows/artifacts-workflow.yaml b/.github/workflows/artifacts-workflow.yaml new file mode 100644 index 0000000..5948884 --- /dev/null +++ b/.github/workflows/artifacts-workflow.yaml @@ -0,0 +1,13 @@ +on: [push] +jobs: + upload-artifact: + runs-on: ubuntu-latest + steps: + - shell: bash + run: | + expr 1 + 1 > output.log + - name: Upload output file + uses: actions/upload-artifact@v2 + with: + name: output-log-file + path: output.log