From 74f5d2a38c641a64ae06f962b04d9c07847d49ea Mon Sep 17 00:00:00 2001 From: NhanPT Date: Tue, 4 Oct 2022 11:47:51 +0700 Subject: [PATCH] test build --- .github/workflows/docker-build-dev.yml | 52 +++++++++++++------------- .github/workflows/docker-build.yml | 50 ++++++++++++------------- .github/workflows/release-build.yml | 25 ++++++++----- 3 files changed, 66 insertions(+), 61 deletions(-) diff --git a/.github/workflows/docker-build-dev.yml b/.github/workflows/docker-build-dev.yml index 1a49ab2..fd9b142 100644 --- a/.github/workflows/docker-build-dev.yml +++ b/.github/workflows/docker-build-dev.yml @@ -1,28 +1,28 @@ -name: docker build +# name: docker build -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 diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 730c11b..52bbc6f 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -1,27 +1,27 @@ -name: docker build +# name: docker build -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 diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index e2e4ee9..c3ddc7c 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -1,8 +1,12 @@ name: release build +# on: +# release: +# types: [created] on: - release: - types: [created] + push: + branches: + - "main" jobs: releases-matrix: @@ -19,11 +23,12 @@ jobs: - goarch: arm64 goos: windows steps: - - uses: actions/checkout@v3 - - uses: wangyoucao577/go-release-action@v1.31 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - goos: ${{ matrix.goos }} - goarch: ${{ matrix.goarch }} - project_path: "./src" - binary_name: "ocean" \ No newline at end of file + - uses: actions/checkout@v3 + - uses: wangyoucao577/go-release-action@v1.31 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: ${{ matrix.goos }} + goarch: ${{ matrix.goarch }} + goversion: "1.19" + project_path: "./src" + binary_name: "ocean"