Bump github.com/spf13/cobra from 1.10.1 to 1.10.2 #111
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: porter/az-mixin | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - v* | |
| tags: | |
| - v* | |
| - "!canary*" | |
| - "!latest*" | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Configure Agent | |
| run: go run mage.go ConfigureAgent | |
| - name: Vet and Lint | |
| run: mage Vet Lint | |
| - name: Test | |
| run: mage Test | |
| - name: Cross Compile | |
| run: mage XBuildAll | |
| - name: Publish | |
| if: success() && github.event_name != 'PullRequest' | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}" | |
| run: mage Publish |