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 279bd97 commit cbc04a6Copy full SHA for cbc04a6
.github/workflows/build-pr-preview.yml
@@ -20,9 +20,9 @@ jobs:
20
21
- name: Store PR id
22
run: |
23
- echo ${{ github.event.number }} > ./target/roq/.pr-id
+ echo ${{ github.event.number }} > ./target/roq/pr-id.txt
24
25
- - name: Publishing blog
+ - name: Uploading artifact
26
uses: actions/upload-artifact@v4
27
with:
28
name: blog
.github/workflows/surge-deploy-preview.yml
@@ -27,7 +27,7 @@ jobs:
- name: Retrieve PR id
id: pr
29
30
- echo "id=$(<.pr-id)" >> $GITHUB_OUTPUT
+ echo "id=$(<pr-id.txt)" >> $GITHUB_OUTPUT
31
rm -f .pr-id
32
33
- name: Publishing blog to gh-pages
0 commit comments