name: Artifact Test on: [push] jobs: artifact-test: runs-on: ubuntu-latest steps: - name: Create test file run: echo "test content" > test.txt - name: Upload artifact uses: actions/upload-artifact@v3 with: name: test-file path: test.txt