Bump github.com/onsi/gomega from 1.36.1 to 1.36.2 (#1580) #126
Workflow file for this run
This file contains 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: Publish Tagged Images | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
jobs: | |
e2e-aws: | |
uses: ./.github/workflows/e2e.yaml | |
secrets: inherit | |
with: | |
cloud: aws | |
# e2e-azure: | |
# uses: ./.github/workflows/e2e.yaml | |
# secrets: inherit | |
# with: | |
# cloud: azurerm | |
# | |
# e2e-google: | |
# uses: ./.github/workflows/e2e.yaml | |
# secrets: inherit | |
# with: | |
# cloud: google | |
release-tagged-images: | |
needs: | |
- e2e-aws | |
# - e2e-google | |
# - e2e-azure | |
uses: ./.github/workflows/images.yaml | |
secrets: inherit | |
release: | |
needs: | |
- e2e-aws | |
# - e2e-azure | |
# - e2e-google | |
name: Github Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- name: Build CLI | |
run: | | |
export VERSION=${GITHUB_REF##*/} | |
make release-cli | |
- name: Github Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
prerelease: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: | | |
release/tnctl-darwin-amd64 | |
release/tnctl-darwin-arm64 | |
release/tnctl-linux-amd64 | |
release/tnctl-linux-arm64 | |
release/tnctl-windows-amd64.exe |