mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-17 04:43:13 +00:00
39 lines
864 B
YAML
39 lines
864 B
YAML
name: build-and-push-test-image
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build-and-push-test-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: stevenlgtm
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
install: true
|
|
version: v0.9.1
|
|
|
|
# TODO(steven)
|
|
# - name: Build and Push
|
|
# id: docker_build
|
|
# uses: docker/build-push-action@v3
|
|
# with:
|
|
# context: ./
|
|
# file: ./Dockerfile
|
|
# platforms: linux/amd64
|
|
# push: true
|
|
# tags: stevenlgtm/corgi:test
|