Skip to content
Snippets Groups Projects
Commit 769d8cc3 authored by Elliott Shugerman's avatar Elliott Shugerman
Browse files

first stab at using github actions

parent 36d5b288
Branches master
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment