Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: correct deploy context #22

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: deploy

on:
workflow_run:
workflows: ["test"]
Expand All @@ -9,8 +8,7 @@ on:
jobs:
deploy-to-dockerhub:
runs-on: ubuntu-latest
if: >
github.event.workflow_run.conclusion == 'success'
if: github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
Expand All @@ -31,29 +29,29 @@ jobs:
org.opencontainers.image.title=warnet-rpc
org.opencontainers.image.description=Warnet RPC server
- name: Login to Docker Hub
if: github.ref == 'refs/heads/main'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push production RPC image
- name: Build production RPC image
uses: docker/build-push-action@v5
with:
file: resources/images/rpc/Dockerfile_prod
platforms: linux/amd64,linux/arm64
context: resources/images/rpc
push: true
context: warnet
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and push dev RPC image
if: github.ref == 'refs/heads/main'
- name: Build dev RPC image
uses: docker/build-push-action@v5
with:
file: resources/images/rpc/Dockerfile_dev
platforms: linux/amd64,linux/arm64
context: resources/images/rpc
push: true
context: warnet/resources/images/rpc
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_RPC_REPO }}:dev
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand Down
Loading