mirror of
https://github.com/kazhala/dotbare
synced 2024-11-06 09:20:25 +00:00
25 lines
433 B
YAML
25 lines
433 B
YAML
name: DockerBuild
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: .
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: docker/build-push-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: kazhala/dotbare
|
|
tag_with_sha: true
|