This repository was archived by the owner on May 12, 2026. It is now read-only.
Merge pull request #280 from Lightbug-HQ/fix/connection-close-paralle… #25
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 tag pipeline | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| package: | |
| uses: ./.github/workflows/package.yml | |
| publish: | |
| uses: ./.github/workflows/publish.yml | |
| secrets: | |
| PREFIX_API_KEY: ${{ secrets.PREFIX_API_KEY }} | |
| upload-to-release: | |
| name: Upload to release | |
| needs: package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get the version | |
| id: get_version | |
| run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: lightbug_http-package | |
| - name: Upload package to release | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| file: lightbug_http.mojopkg | |
| tag: ${{ steps.get_version.outputs.VERSION }} | |
| overwrite: true | |
| docker: | |
| needs: [package, upload-to-release] | |
| uses: ./.github/workflows/docker-build.yml | |
| with: | |
| tags: | | |
| type=semver,pattern={{version}} | |
| type=semver,pattern={{major}}.{{minor}} | |
| type=raw,value=latest | |
| secrets: | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |