File tree 3 files changed +4
-49
lines changed
3 files changed +4
-49
lines changed Original file line number Diff line number Diff line change 42
42
with :
43
43
os : ${{ matrix.os.name }}
44
44
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 }}
61
46
- name : Publish artifacts
62
47
uses : actions/upload-artifact@v4
63
48
with :
Original file line number Diff line number Diff line change 41
41
with :
42
42
os : ${{ matrix.os.name }}
43
43
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 }}
60
45
- name : Publish artifacts
61
46
uses : actions/upload-artifact@v4
62
47
with :
Original file line number Diff line number Diff line change 38
38
uses : ./.github/actions/build
39
39
with :
40
40
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 }}
58
43
- name : Publish release
59
44
uses : softprops/action-gh-release@v2
60
45
with :
You can’t perform that action at this time.
0 commit comments