Bump nosdump to 0.4.5 #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Docker Hub" | |
on: | |
push: | |
tags: ["[0-9]+.[0-9]+.[0-9]+"] | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: docker image build . -t kaosf/nosdump-and-store:${{ github.ref_name }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: kaosf | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push | |
run: docker image push kaosf/nosdump-and-store:${{ github.ref_name }} |