Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe7efc3

Browse files
committed
Enable plugin uploads in GitHub Actions workflow
Previously commented out upload steps for HI2UC and HIColorer have been re-enabled. Additionally, the non-functional `upload-job` configuration has been commented out for clarity.
1 parent 1701236 commit fe7efc3

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,28 @@ jobs:
4747
run: source\zip-plugin-files.ps1
4848

4949
# Upload plugins/artifacts
50-
# - name: Upload HI2UC
51-
# uses: ./.github/workflows/plugin-upload
52-
# with:
53-
# file-name: HI2UC
54-
#
55-
# - name: Upload HIColorer
56-
# uses: ./.github/workflows/plugin-upload
57-
# with:
58-
# file-name: HIColorer
59-
60-
upload-job:
61-
runs-on: windows-latest
62-
needs: build-job
63-
strategy:
64-
matrix:
65-
artifact_name: [ "HI2UC", "HIColorer" ]
66-
steps:
67-
- name: Checkout repository
68-
uses: actions/checkout@v3
50+
- name: Upload HI2UC
51+
uses: ./.github/workflows/plugin-upload
52+
with:
53+
file-name: HI2UC
6954

70-
- name: Upload ${{matrix.artifact_name}}
55+
- name: Upload HIColorer
7156
uses: ./.github/workflows/plugin-upload
7257
with:
73-
file-name: ${{matrix.artifact_name}}
58+
file-name: HIColorer
59+
60+
# won't work 'cause the two jobs are running in two difference instance of windows container
61+
# upload-job:
62+
# runs-on: windows-latest
63+
# needs: build-job
64+
# strategy:
65+
# matrix:
66+
# artifact_name: [ "HI2UC", "HIColorer" ]
67+
# steps:
68+
# - name: Checkout repository
69+
# uses: actions/checkout@v3
70+
#
71+
# - name: Upload ${{matrix.artifact_name}}
72+
# uses: ./.github/workflows/plugin-upload
73+
# with:
74+
# file-name: ${{matrix.artifact_name}}

0 commit comments

Comments
 (0)