Compare commits
3 commits
b430067759
...
c25710e4bd
Author | SHA1 | Date | |
---|---|---|---|
c25710e4bd | |||
ad1212df4c | |||
b336ab151c |
1 changed files with 6 additions and 4 deletions
|
@ -34,7 +34,7 @@ jobs:
|
||||||
|
|
||||||
- name: Prepare Build Environment
|
- name: Prepare Build Environment
|
||||||
run: |
|
run: |
|
||||||
apt update && apt -y install zip nodejs curl jq
|
apt update && apt -y install zip unzip nodejs curl jq
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -53,6 +53,7 @@ jobs:
|
||||||
cd build
|
cd build
|
||||||
zip -r "../${PLUGIN_NAME}.zip" "${PLUGIN_NAME}"
|
zip -r "../${PLUGIN_NAME}.zip" "${PLUGIN_NAME}"
|
||||||
cd -
|
cd -
|
||||||
|
unzip -l "${PLUGIN_NAME}.zip"
|
||||||
|
|
||||||
- name: Create Release if not exists
|
- name: Create Release if not exists
|
||||||
run: |
|
run: |
|
||||||
|
@ -86,7 +87,8 @@ jobs:
|
||||||
| jq -r '.id')
|
| jq -r '.id')
|
||||||
|
|
||||||
# Pushes he zip file to be shown in the "Releases" tab under this release.
|
# Pushes he zip file to be shown in the "Releases" tab under this release.
|
||||||
curl -X POST "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/releases/${RELEASE_ID}/assets?name=${PLUGIN_NAME}.zip" \
|
curl -X POST "${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/releases/${RELEASE_ID}/assets" \
|
||||||
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||||
-H "Content-Type: application/zip" \
|
-F "name=${PLUGIN_NAME}.zip" \
|
||||||
--data-binary "@build/${PLUGIN_NAME}.zip"
|
-F "attachment=@build/${PLUGIN_NAME}.zip"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue