We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f742ecf commit 61452afCopy full SHA for 61452af
1 file changed
.github/workflows/release.yml
@@ -86,12 +86,19 @@ jobs:
86
prerelease: true
87
makeLatest: true
88
89
- - name: Send release to ESOUI
90
- uses: m00nyONE/esoui-upload@v1
+ - name: Upload Addon to ESOUI
91
with:
92
- # api_key: ${{ secrets.ESOUI_API_KEY }}
93
- api_key: '123'
+ api_key: ${{ secrets.ESOUI_API_KEY }}
94
addon_id: ${{ env.ESOUI_ADDON_ID }}
95
version: ${{ env.ADDON_VERSION }}
96
zip_file: ${{ env.ADDON_ZIP_NAME }}
97
changelog_file: 'CHANGELOG.md'
+ run: |
+ set +x
98
+ curl --silent --fail -X POST \
99
+ -H "x-api-token: ${{ inputs.api_key }}" \
100
+ -F "id=${{ inputs.addon_id }}" \
101
+ -F "version=${{ inputs.version }}" \
102
+ -F "updatefile=@${{ inputs.zip_file }}" \
103
+ -F "changelog=$(cat ${{ inputs.changelog_file }})" \
104
+ https://api.esoui.com/addons/updatetest
0 commit comments