21 lines
659 B
YAML
21 lines
659 B
YAML
name: Build latest tag docker image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build the Docker image
|
|
run: docker build --tag butterrobot:$(git rev-parse --short HEAD) docker
|
|
|
|
- name: Push into Github packages (latest)
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u fmartingr --password-stdin
|
|
docker tag butterrobot:$(git rev-parse --short HEAD) docker.pkg.github.com/fmartingr/butterrobot/butterrobot:master
|
|
docker push docker.pkg.github.com/fmartingr/butterrobot/butterrobot:master
|