mirror of
https://github.com/ethanrusz/scouter.git
synced 2024-11-21 10:57:45 -05:00
Update build and push workflow
This commit is contained in:
parent
3f225d6df8
commit
7b106be2b1
1 changed files with 19 additions and 23 deletions
40
.github/workflows/build-and-push.yml
vendored
40
.github/workflows/build-and-push.yml
vendored
|
@ -1,4 +1,5 @@
|
|||
name: Build and Push to git.beans.team
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
|
@ -7,31 +8,26 @@ on:
|
|||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and Push Image
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
update-registry:
|
||||
name: Update Registry Image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build Image
|
||||
id: build-image
|
||||
uses: redhat-actions/buildah-build@v2
|
||||
- name: Login to git.beans.team
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
image: git.beans.team/em/scouter
|
||||
tags: latest ${{ github.sha }}
|
||||
containerfiles: |
|
||||
./Containerfile
|
||||
|
||||
- name: Push to git.beans.team
|
||||
id: push-to-reg
|
||||
uses: redhat-actions/push-to-registry@v2
|
||||
with:
|
||||
image: ${{ steps.build-image.outputs.image }}
|
||||
tags: ${{ steps.build-image.outputs.tags }}
|
||||
registry: git.beans.team/em
|
||||
registry: git.beans.team
|
||||
username: em
|
||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||
|
||||
- name: Print Image URL
|
||||
run: echo "Image pushed to ${{ steps.push-to-reg.outputs.registry-paths }}"
|
||||
- name: Build and Push Image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: |
|
||||
git.beans.team:latest
|
||||
git.beans.team:${{ github.sha }}
|
||||
|
|
Loading…
Reference in a new issue