Skip to content

Commit

Permalink
ci: release docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Jun 2, 2024
1 parent 5a55528 commit 8ddfb43
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release latest

on:
push:
branches:
- master

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: blossomlabs/swarm-batch-prometheus:latest

0 comments on commit 8ddfb43

Please sign in to comment.