Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ventsislav-georgiev committed Nov 13, 2023
1 parent 5bef4e3 commit d8710c7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: ci

on:
push:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout
uses: actions/checkout@v3
- name: Build and push
run: |
./build.sh
8 changes: 4 additions & 4 deletions build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
TAG="v1.4.0"
TAG="v1.4.0-payhawk.1"
docker buildx build --platform linux/amd64 -t devopsairwallex/k8s-pod-restart-info-collector:${TAG} .
docker push devopsairwallex/k8s-pod-restart-info-collector:${TAG}
# docker push devopsairwallex/k8s-pod-restart-info-collector:${TAG}

docker tag devopsairwallex/k8s-pod-restart-info-collector:${TAG} devopsairwallex/k8s-pod-restart-info-collector:latest
docker push devopsairwallex/k8s-pod-restart-info-collector:latest
# docker tag devopsairwallex/k8s-pod-restart-info-collector:${TAG} devopsairwallex/k8s-pod-restart-info-collector:latest
# docker push devopsairwallex/k8s-pod-restart-info-collector:latest

0 comments on commit d8710c7

Please sign in to comment.