Release #329
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: | |
| workflow_dispatch: | |
| inputs: | |
| version_override: | |
| description: 'Override semantic version (e.g., v4.3.0) - leave empty for automatic calculation' | |
| required: false | |
| type: string | |
| push: | |
| branches: [master] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| outputs: | |
| git_tag: ${{ steps.semantic_release_info.outputs.git_tag || steps.version_override.outputs.git_tag }} | |
| version: ${{ steps.semantic_release_info.outputs.version || steps.version_override.outputs.version }} | |
| notes: ${{ steps.semantic_release_info.outputs.notes || steps.version_override.outputs.notes }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| with: | |
| fetch-depth: 0 # Required for 2ms to have visibility to all commit history | |
| - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: Unit Tests | |
| run: go test ./... | |
| - name: Gets release info | |
| id: semantic_release_info | |
| if: github.event_name == 'workflow_dispatch' && github.event.inputs.version_override == '' | |
| uses: jossef/action-semantic-release-info@277fc891fc5ac40ed0e8d6bf59a0e24a25dfdeac #v3.0.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Override version if specified | |
| id: version_override | |
| if: github.event_name == 'workflow_dispatch' && github.event.inputs.version_override != '' | |
| run: | | |
| echo "Using manual version override: ${{ github.event.inputs.version_override }}" | |
| echo "git_tag=${{ github.event.inputs.version_override }}" >> $GITHUB_OUTPUT | |
| echo "version=$(echo '${{ github.event.inputs.version_override }}' | sed 's/^v//')" >> $GITHUB_OUTPUT | |
| echo "notes=Manual release with version override to ${{ github.event.inputs.version_override }}" >> $GITHUB_OUTPUT | |
| build: | |
| name: Build and Release | |
| runs-on: ubuntu-latest | |
| needs: test | |
| if: ${{ needs.test.outputs.git_tag }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: Go Mod Tidy | |
| run: go mod tidy | |
| - name: Compile for Linux amd64 | |
| env: | |
| VERSION: ${{ needs.test.outputs.version }} | |
| CGO_ENABLED: 0 | |
| GOOS: linux | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags "-s -w -X github.com/checkmarx/2ms/cmd.Version=$VERSION" -a -installsuffix cgo -o dist/2ms main.go | |
| zip -j dist/linux-amd64.zip dist/2ms | |
| rm dist/2ms | |
| - name: Compile for Linux arm64 | |
| env: | |
| VERSION: ${{ needs.test.outputs.version }} | |
| CGO_ENABLED: 0 | |
| GOOS: linux | |
| GOARCH: arm64 | |
| run: | | |
| go build -ldflags "-s -w -X github.com/checkmarx/2ms/cmd.Version=$VERSION" -a -installsuffix cgo -o dist/2ms main.go | |
| zip -j dist/linux-arm64.zip dist/2ms | |
| rm dist/2ms | |
| - name: Compile for MacOS amd64 | |
| env: | |
| VERSION: ${{ needs.test.outputs.version }} | |
| CGO_ENABLED: 0 | |
| GOOS: darwin | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags "-s -w -X github.com/checkmarx/2ms/cmd.Version=$VERSION" -a -installsuffix cgo -o dist/2ms main.go | |
| zip -j dist/macos-amd64.zip dist/2ms | |
| rm dist/2ms | |
| - name: Compile for MacOS arm64 | |
| env: | |
| VERSION: ${{ needs.test.outputs.version }} | |
| CGO_ENABLED: 0 | |
| GOOS: darwin | |
| GOARCH: arm64 | |
| run: | | |
| go build -ldflags "-s -w -X github.com/checkmarx/2ms/cmd.Version=$VERSION" -a -installsuffix cgo -o dist/2ms main.go | |
| zip -j dist/macos-arm64.zip dist/2ms | |
| rm dist/2ms | |
| - name: Compile for Windows amd64 | |
| env: | |
| VERSION: ${{ needs.test.outputs.version }} | |
| CGO_ENABLED: 0 | |
| GOOS: windows | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags "-s -w -X github.com/checkmarx/2ms/cmd.Version=$VERSION" -a -installsuffix cgo -o dist/2ms.exe main.go | |
| zip -j dist/windows-amd64.zip dist/2ms.exe | |
| rm dist/2ms.exe | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # v2 | |
| with: | |
| image: tonistiigi/binfmt:latest | |
| platforms: linux/amd64,linux/arm64 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb #v3.3.0 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 #v3.1.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Creating Release | |
| uses: softprops/action-gh-release@975c1b265e11dd76618af1c374e7981f9a6ff44a | |
| with: | |
| tag_name: ${{ needs.test.outputs.git_tag }} | |
| name: ${{ needs.test.outputs.git_tag }} | |
| body: ${{ needs.test.outputs.notes }} | |
| target_commitish: ${{ steps.commit_and_push.outputs.latest_commit_hash }} | |
| files: | | |
| dist/*.zip | |
| - name: Build and push | |
| uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| checkmarx/2ms:latest | |
| checkmarx/2ms:${{ needs.test.outputs.version }} | |
| - name: Update Docker repo description | |
| uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: checkmarx/2ms |