Merge pull request #3749 from telepresenceio/thallgren/drop-cluster-id #390
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: Go Dependency Submission | |
on: | |
push: | |
branches: | |
- release/v2 | |
# The API requires write permission on the repository to submit dependencies | |
permissions: | |
contents: write | |
jobs: | |
go-action-detection: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
# we need fuseftp.bits | |
- name: "Build dependencies" | |
run: make build-deps | |
- name: Run snapshot action | |
uses: actions/go-dependency-submission@v1 | |
with: | |
go-mod-path: go.mod | |
go-build-target: cmd/telepresence/main.go |