Skip to content

Commit

Permalink
release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit Riessen committed Dec 18, 2022
1 parent ae571ba commit 47689ae
Show file tree
Hide file tree
Showing 2 changed files with 171 additions and 123 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release-0.0.4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Push-Release-0.0.4-To-Dockerhub

on:
push:
branches: [ release-0.0.4 ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: gorenje/sfts:0.0.4
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Loading

0 comments on commit 47689ae

Please sign in to comment.