Skip to content

Commit

Permalink
Merge pull request #12 from SphereUO/dev
Browse files Browse the repository at this point in the history
add docker-image support for upload nightly image to docker
  • Loading branch information
raydienull authored Dec 1, 2023
2 parents de019c4 + 56c87a6 commit cccb9ac
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish Docker image

on:
workflow_run:
workflows: [Build]
types: [completed]
branches: [main]

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: raylde/sphereuo:nightly

0 comments on commit cccb9ac

Please sign in to comment.