pull/441/merge
Dmitry Ilyin 2022-09-08 04:58:07 -04:00 committed by GitHub
commit 6f50059d59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -561,6 +561,18 @@ jobs:
tag: ${{ env.TAG_NAME }} tag: ${{ env.TAG_NAME }}
overwrite: true overwrite: true
- name: Publish image -> toolchain mapping
if: ${{ !env.ACT && github.event_name != 'pull_request' && matrix.custom != 'onlyci' }}
env:
MAP_TOKEN: ${{ secrets.MAP_TOKEN }}
run: |
curl \
-X POST \
-F "release=${{ matrix.platform }}_${{ matrix.release }}" \
-F "toolchain=${TOOLNAME}" \
-H "Authorization: Bearer ${MAP_TOKEN}" \
https://openipc.org/map_toolchain || true
- name: Send binary file to telegram channel - name: Send binary file to telegram channel
if: ${{ !env.ACT && github.event_name != 'pull_request' && matrix.custom != 'onlyci' }} if: ${{ !env.ACT && github.event_name != 'pull_request' && matrix.custom != 'onlyci' }}
env: env: