Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions .github/workflows/build-datebadge-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:

- name: Get current date step
id: date
run: |
echo "date=$(date)" >> $GITHUB_OUTPUT
run: echo "date=$(date)" >> $GITHUB_OUTPUT

- name: Build BYOB date badge step
if: ${{ github.ref_name == 'main' }}
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/build-executable-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ jobs:

steps:

- name: Download matrix build artifacts step
uses: actions/download-artifact@v7
with:
pattern: publish-*
merge-multiple: true
path: ${{ runner.temp }}/publish
- name: Download matrix build artifacts step
uses: actions/download-artifact@v7
with:
pattern: publish-*
merge-multiple: true
path: ${{ runner.temp }}/publish

- name: Zip build output step
run: 7z a -t7z ${{ runner.temp }}/Console.7z ${{ runner.temp }}/publish/*
- name: Zip build output step
run: 7z a -t7z ${{ runner.temp }}/Console.7z ${{ runner.temp }}/publish/*

- name: Upload build artifacts step
id: artifact-upload-step
uses: actions/upload-artifact@v6
with:
name: executable-build
path: ${{ runner.temp }}/Console.7z
- name: Upload build artifacts step
id: artifact-upload-step
uses: actions/upload-artifact@v6
with:
name: executable-build
path: ${{ runner.temp }}/Console.7z
3 changes: 1 addition & 2 deletions .github/workflows/build-library-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ jobs:
--skip-duplicate

- name: Zip output step
run: |
7z a -t7z ${{ runner.temp }}/Library.7z ${{ runner.temp }}/publish/*
run: 7z a -t7z ${{ runner.temp }}/Library.7z ${{ runner.temp }}/publish/*

- name: Upload build artifacts step
id: artifact-upload-step
Expand Down