Skip to content

Commit

Permalink
removed travis, use github action
Browse files Browse the repository at this point in the history
  • Loading branch information
rongxin-liu committed Jul 16, 2023
1 parent 3438d1c commit 80ed495
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 19 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
on: push
jobs:
build:
runs-on: ubuntu-latest-16-cores
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

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

- name: Log into Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build for linux/amd64
uses: docker/build-push-action@v3
with:
build-args: |
VCS_REF=${{ github.sha }}
load: true
platforms: linux/amd64
tags: cs50/mysql:amd64
cache-from: type=registry,ref=cs50/mysql:amd64-buildcache
cache-to: type=registry,ref=cs50/mysql:amd64-buildcache,mode=max

- name: Push linux/amd64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/mysql:amd64
- name: Build for linux/arm64
uses: docker/build-push-action@v3
with:
build-args: |
VCS_REF=${{ github.sha }}
load: true
platforms: linux/arm64
tags: cs50/mysql:arm64
cache-from: type=registry,ref=cs50/mysql:arm64-buildcache
cache-to: type=registry,ref=cs50/mysql:arm64-buildcache,mode=max

- name: Push linux/arm64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/mysql:arm64
- name: Create multi-arch manifest and push to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker manifest create cs50/mysql:latest \
--amend cs50/mysql:amd64 \
--amend cs50/mysql:arm64
docker manifest push cs50/mysql:latest
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit 80ed495

Please sign in to comment.