Skip to content

Commit

Permalink
publish stps-sender
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam committed Nov 22, 2024
1 parent 8a96797 commit 004a327
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-images-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Publish Docker containers

on:
push:
branches:
- s0me0ne/overhaul

jobs:
stps-sender:
name: Build docker image
runs-on: ubuntu-latest
environment: main_n_tags
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./utils/dockerfiles/Dockerfile.sender-any
push: true
tags: |
docker.io/paritypr/stps-sender:any-latest
docker.io/paritypr/stps-sender:any-${{ github.sha }}

0 comments on commit 004a327

Please sign in to comment.