We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 041aa74 commit baba1c7Copy full SHA for baba1c7
.github/workflows/release.yml
@@ -41,10 +41,22 @@ jobs:
41
env:
42
GITHUB_TOKEN: ${{ secrets.PAT }} # Pass PAT as GITHUB_TOKEN to the script
43
44
+ - name: Upload job outputs as artifact
45
+ uses: actions/upload-artifact@v4
46
+ with:
47
+ name: job-output-artifact
48
+ path: ./data
49
+
50
release:
51
needs: build
52
runs-on: ubuntu-latest
53
steps:
54
+ - name: Download artifact from build job
55
+ uses: actions/download-artifact@v4
56
57
58
+ path: ./data # Download into a specific directory
59
60
- name: Get current date for release name
61
id: get_date
62
run: echo "RELEASE_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV # Set environment variable with current date and time
0 commit comments