chore: Add documentation on REST vs GraphQL. #13
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: | |
| branches: | |
| - "main" | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: "0" | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: Run QA | |
| run: make qa | |
| - name: Get next version | |
| id: get_next_version | |
| uses: thenativeweb/[email protected] | |
| - name: Create new version | |
| if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }} | |
| run: | | |
| git tag v${{ steps.get_next_version.outputs.version }} | |
| git push origin v${{ steps.get_next_version.outputs.version }} | |
| - name: Build artifacts | |
| if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }} | |
| run: | | |
| make build | |
| - name: Release new version | |
| if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }} | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| artifacts: "build/*" | |
| tag: v${{ steps.get_next_version.outputs.version }} |