Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b16bce1

Browse files
committedJan 18, 2025
refactor(ci): deduplicate preparing artifacts
1 parent fb762af commit b16bce1

File tree

3 files changed

+4
-49
lines changed

3 files changed

+4
-49
lines changed
 

‎.github/workflows/main.yml

+1-16
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,7 @@ jobs:
4242
with:
4343
os: ${{ matrix.os.name }}
4444
arch: ${{ matrix.arch }}
45-
- name: Prepare artifacts (Unix)
46-
if: runner.os != 'windows'
47-
run: |
48-
mkdir -p upload
49-
file=$(find out/make -name '*.zip' -print -quit)
50-
cp "$file" "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}-${{ github.ref_name }}.zip"
51-
file=$(find out/make -name '*.${{ matrix.os.extension }}' -print -quit)
52-
cp "$file" "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}-${{ github.ref_name }}.${{ matrix.os.extension }}"
53-
- name: Prepare artifacts (Windows)
54-
if: runner.os == 'windows'
55-
run: |
56-
mkdir upload
57-
$file = Get-ChildItem -Path out/make -Filter '*.zip' -Recurse | Select-Object -First 1
58-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}-${{ github.ref_name }}.zip"
59-
$file = Get-ChildItem -Path out/make -Filter '*.${{ matrix.os.extension }}' -Recurse | Select-Object -First 1
60-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}-${{ github.ref_name }}.${{ matrix.os.extension }}"
45+
extension: ${{ matrix.os.extension }}
6146
- name: Publish artifacts
6247
uses: actions/upload-artifact@v4
6348
with:

‎.github/workflows/nightly.yml

+1-16
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,7 @@ jobs:
4141
with:
4242
os: ${{ matrix.os.name }}
4343
arch: ${{ matrix.arch }}
44-
- name: Prepare artifacts (Unix)
45-
if: runner.os != 'windows'
46-
run: |
47-
mkdir -p upload
48-
file=$(find out/make -name '*.zip' -print -quit)
49-
cp "$file" "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}.zip"
50-
file=$(find out/make -name '*.${{ matrix.os.extension }}' -print -quit)
51-
cp "$file" "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}.${{ matrix.os.extension }}"
52-
- name: Prepare artifacts (Windows)
53-
if: runner.os == 'windows'
54-
run: |
55-
mkdir upload
56-
$file = Get-ChildItem -Path out/make -Filter '*.zip' -Recurse | Select-Object -First 1
57-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}.zip"
58-
$file = Get-ChildItem -Path out/make -Filter '*.${{ matrix.os.extension }}' -Recurse | Select-Object -First 1
59-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ matrix.os.name }}-${{ matrix.arch }}.${{ matrix.os.extension }}"
44+
extension: ${{ matrix.os.extension }}
6045
- name: Publish artifacts
6146
uses: actions/upload-artifact@v4
6247
with:

‎.github/workflows/release.yml

+2-17
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,8 @@ jobs:
3838
uses: ./.github/actions/build
3939
with:
4040
os: ${{ matrix.os.name }}
41-
arch: ${{ matrix.arch }}
42-
- name: Prepare artifacts (Unix)
43-
if: runner.os != 'windows'
44-
run: |
45-
mkdir -p upload
46-
file=$(find out/make -name '*.zip' -print -quit)
47-
cp "$file" "upload/TriliumNextNotes-${{ github.ref_name }}-${{ matrix.os.name }}-${{ matrix.arch }}.zip"
48-
file=$(find out/make -name '*.${{ matrix.os.extension }}' -print -quit)
49-
cp "$file" "upload/TriliumNextNotes-${{ github.ref_name }}-${{ matrix.os.name }}-${{ matrix.arch }}.${{ matrix.os.extension }}"
50-
- name: Prepare artifacts (Windows)
51-
if: runner.os == 'windows'
52-
run: |
53-
mkdir upload
54-
$file = Get-ChildItem -Path out/make -Filter '*.zip' -Recurse | Select-Object -First 1
55-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ github.ref_name }}-${{ matrix.os.name }}-${{ matrix.arch }}.zip"
56-
$file = Get-ChildItem -Path out/make -Filter '*.${{ matrix.os.extension }}' -Recurse | Select-Object -First 1
57-
Copy-Item -Path $file.FullName -Destination "upload/TriliumNextNotes-${{ github.ref_name }}-${{ matrix.os.name }}-${{ matrix.arch }}.${{ matrix.os.extension }}"
41+
arch: ${{ matrix.arch }}
42+
extension: ${{ matrix.os.extension }}
5843
- name: Publish release
5944
uses: softprops/action-gh-release@v2
6045
with:

0 commit comments

Comments
 (0)
Please sign in to comment.