mirror of https://github.com/statping/statping
workflow
parent
244838e946
commit
c30cc403c7
|
@ -309,9 +309,8 @@ jobs:
|
||||||
VERSION: ${{ env.VERSION }}
|
VERSION: ${{ env.VERSION }}
|
||||||
COMMIT: ${{ github.sha }}
|
COMMIT: ${{ github.sha }}
|
||||||
run: |
|
run: |
|
||||||
ls -R
|
|
||||||
cd build && tar -xvf statping-linux-amd64.tar.gz
|
cd build && tar -xvf statping-linux-amd64.tar.gz
|
||||||
mv statping /usr/local/bin/
|
mv statping ../
|
||||||
|
|
||||||
- name: Run Statping
|
- name: Run Statping
|
||||||
run: |
|
run: |
|
||||||
|
@ -326,3 +325,26 @@ jobs:
|
||||||
environment: ./dev/${{ matrix.platform }}
|
environment: ./dev/${{ matrix.platform }}
|
||||||
timeoutRequest: 30000
|
timeoutRequest: 30000
|
||||||
delayRequest: 600
|
delayRequest: 600
|
||||||
|
|
||||||
|
|
||||||
|
sentry-release:
|
||||||
|
needs: [test, test-postman]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout Statping Repo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup Sentry CLI
|
||||||
|
uses: mathrix-education/setup-sentry-cli@master
|
||||||
|
with:
|
||||||
|
version: latest
|
||||||
|
url: ${{ secrets.SENTRY_URL }}
|
||||||
|
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||||
|
organization: statping
|
||||||
|
|
||||||
|
- name: Setting ENV's
|
||||||
|
run: echo ::set-env name=VERSION::$(cat version.txt)
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Sentry Release
|
||||||
|
run: make sentry-release
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# 0.90.63 (08-07-2020)
|
||||||
|
- Modified build process to use xgo for all arch builds
|
||||||
|
|
||||||
# 0.90.62 (08-07-2020)
|
# 0.90.62 (08-07-2020)
|
||||||
- Added Notification logs
|
- Added Notification logs
|
||||||
- Fixed issues with Notifer After (x) failures for notifications
|
- Fixed issues with Notifer After (x) failures for notifications
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.90.62
|
0.90.63
|
||||||
|
|
Loading…
Reference in New Issue