chore: small cleanup #19
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
| # run lint and type-check on every commit, full quality checks on release tags | |
| name: Build simple commit | |
| on: | |
| push: | |
| branches: ['*'] | |
| tags-ignore: [ 'v*.*.*' ] | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/reuse-build.yml | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send Keel notifications to staging-koumoul.com | |
| run: | | |
| curl -s --fail --show-error -X POST https://keel.admin.staging-koumoul.com/v1/webhooks/native -u ${{ secrets.KEEL_STAGING_USER }}:${{ secrets.KEEL_STAGING_PASSWORD }} -d '{"name": "ghcr.io/${{ github.repository }}", "tag": "${{ github.ref_name }}"}' |