-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove probe-ingest Docker image deployment steps from test-release w…
…orkflow
- Loading branch information
Showing
1 changed file
with
0 additions
and
61 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -721,67 +721,6 @@ jobs: | |
GIT_SHA=${{ github.sha }} | ||
APP_VERSION=7.0.${{needs.generate-build-number.outputs.build_number}} | ||
probe-ingest-docker-image-deploy: | ||
needs: generate-build-number | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Docker Meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
oneuptime/probe-ingest | ||
ghcr.io/oneuptime/probe-ingest | ||
tags: | | ||
type=raw,value=test,enable=true | ||
type=semver,value=7.0.${{needs.generate-build-number.outputs.build_number}}-test,pattern={{version}},enable=true | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 18.3.0 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Generate Dockerfile from Dockerfile.tpl | ||
run: npm run prerun | ||
|
||
# Build and deploy probe-ingest. | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
file: ./ProbeIngest/Dockerfile | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
GIT_SHA=${{ github.sha }} | ||
APP_VERSION=7.0.${{needs.generate-build-number.outputs.build_number}} | ||
open-telemetry-ingest-docker-image-deploy: | ||
needs: generate-build-number | ||
runs-on: ubuntu-latest | ||
|