Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makes the upload paths relative #1006

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions stack/.github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

on:
schedule:
- cron: '27 2,14 * * *' # daily at 02:27 and 14:27 UTC

Check warning on line 5 in stack/.github/workflows/create-release.yml

View workflow job for this annotation

GitHub Actions / lintYaml

5:27 [comments] too few spaces before comment
push:
branches:
- main
Expand Down Expand Up @@ -239,9 +239,9 @@
with:
name: build-diff-files
path: |
"${{ github.workspace }}/${{ env.BUILD_DIFF_ADDED_FILENAME }}"
"${{ github.workspace }}/${{ env.BUILD_DIFF_MODIFIED_FILENAME }}"
"${{ github.workspace }}/${{ env.BUILD_DIFF_REMOVED_FILENAME }}"
${{ env.BUILD_DIFF_ADDED_FILENAME }}
${{ env.BUILD_DIFF_MODIFIED_FILENAME }}
${{ env.BUILD_DIFF_REMOVED_FILENAME }}

- name: Compare Run Packages
id: run_diff
Expand All @@ -258,9 +258,9 @@
with:
name: run-diff-files
path: |
"${{ github.workspace }}/${{ env.RUN_DIFF_ADDED_FILENAME }}"
"${{ github.workspace }}/${{ env.RUN_DIFF_MODIFIED_FILENAME }}"
"${{ github.workspace }}/${{ env.RUN_DIFF_REMOVED_FILENAME }}"
${{ env.RUN_DIFF_ADDED_FILENAME }}
${{ env.RUN_DIFF_MODIFIED_FILENAME }}
${{ env.RUN_DIFF_REMOVED_FILENAME }}


- name: Fail If Packages Removed
Expand Down
Loading