-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NhanPT
committed
Oct 4, 2022
1 parent
743c02b
commit 0ebda20
Showing
3 changed files
with
53 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# name: docker build | ||
name: docker build dev | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - "main" | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
# jobs: | ||
# docker: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Set up QEMU | ||
# uses: docker/setup-qemu-action@v1 | ||
# - name: Set up Docker Buildx | ||
# uses: docker/setup-buildx-action@v1 | ||
# - name: Login to DockerHub | ||
# uses: docker/login-action@v1 | ||
# with: | ||
# username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
# password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# - name: Build and push | ||
# uses: docker/build-push-action@v2 | ||
# with: | ||
# platforms: |- | ||
# linux/amd64 | ||
# linux/arm64 | ||
# push: true | ||
# tags: help14/ocean:dev | ||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: |- | ||
linux/amd64 | ||
linux/arm64 | ||
push: true | ||
tags: help14/ocean:dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# name: docker build | ||
name: docker build release | ||
|
||
# on: | ||
# release: | ||
# types: [created] | ||
on: | ||
release: | ||
types: [created] | ||
|
||
# jobs: | ||
# docker: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Set up QEMU | ||
# uses: docker/setup-qemu-action@v1 | ||
# - name: Set up Docker Buildx | ||
# uses: docker/setup-buildx-action@v1 | ||
# - name: Login to DockerHub | ||
# uses: docker/login-action@v1 | ||
# with: | ||
# username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
# password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# - name: Build and push | ||
# uses: docker/build-push-action@v2 | ||
# with: | ||
# platforms: |- | ||
# linux/amd64 | ||
# linux/arm64 | ||
# push: true | ||
# tags: help14/ocean:latest | ||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: |- | ||
linux/amd64 | ||
linux/arm64 | ||
push: true | ||
tags: help14/ocean:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters