mirror of
https://github.com/kazhala/dotbare
synced 2024-11-17 21:25:32 +00:00
workflow
This commit is contained in:
parent
c4e40cd0e4
commit
92109656e7
28
.github/workflows/dockerimage.yml
vendored
Normal file
28
.github/workflows/dockerimage.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
name: Docker Image CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user