Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try skipping validation #318

Merged
merged 1 commit into from
May 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .github/workflows/build-test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand All @@ -266,7 +266,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand All @@ -293,7 +293,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Cache Go
id: go-cache
uses: actions/cache@v3
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: "1.20"
- name: Mkdir bin and dist
run: |
mkdir bin/ dist/
Expand Down Expand Up @@ -440,9 +440,6 @@ jobs:
run: |
make docker-otelcontribcol
docker tag otelcontribcol:latest 609927696493.dkr.ecr.us-west-2.amazonaws.com/opentelemetry-collector-contrib:${{ steps.create-version.outputs.BUILD_VERSION }}
- name: Validate Docker Image
run: |
docker run 609927696493.dkr.ecr.us-west-2.amazonaws.com/opentelemetry-collector-contrib:${{ steps.create-version.outputs.BUILD_VERSION }} --version
- id: login-gcp
name: Authenticate with Google Cloud
uses: google-github-actions/auth@v1
Expand Down
Loading