mirror of
https://github.com/garraflavatra/docker-volume-s3-backup.git
synced 2025-05-17 13:14:38 +00:00
first stab at using github actions
This commit is contained in:
parent
36d5b2888c
commit
769d8cc3ba
26
.github/workflows/build-and-push-images.yml
vendored
Normal file
26
.github/workflows/build-and-push-images.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Build and push images
|
||||
on:
|
||||
push:
|
||||
branches: ['master']
|
||||
|
||||
jobs:
|
||||
build-and-push-image:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Log in to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ github.repository }}/9
|
||||
build-args: |
|
||||
ALPINE_VERSION=3.6
|
Loading…
x
Reference in New Issue
Block a user