fix: make it possible to unset a check/monitor's group on update (#144) #52
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Zip Release | |
| uses: thedoctor0/zip-release@master | |
| with: | |
| filename: checkly-go-sdk.zip | |
| exclusions: "*.git* *_test.go /*fixtures/* /*demo/* MAKEFILE" | |
| - name: Upload Release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| draft: true | |
| prerelease: true | |
| artifacts: checkly-go-sdk.zip | |
| token: ${{ secrets.GITHUB_TOKEN }} |