From df8dc2eba82cf80a033918add33a12617a11e645 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 21 Feb 2024 23:01:41 +0300 Subject: [PATCH] workflows: add build/push workflow, fix #67 This one pushes to Hub whenever a push into master is made, improving somewhat on the old behavior (pushing for PRs as well). We have no releases here and at the moment I don't like to introduce them. Signed-off-by: Roman Khimov --- .github/workflows/build.yml | 76 +++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..847814f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,76 @@ +name: Build + +on: + pull_request: + branches: + - master + types: [opened, synchronize] + paths-ignore: + - '**/*.md' + push: + # Build for the master branch. + branches: + - master + workflow_dispatch: + inputs: + ref: + description: 'Ref to build the binary [default: latest master; examples: v0.10.0, 0a4ff9d3e4a9ab432fd5812eb18c98e03b5a7432]' + required: false + default: '' + push_image: + description: 'Push images to DockerHub [default: false; examples: true, false]' + required: false + default: 'false' + use_latest_tag: + description: 'Use `latest` tag while pushing images to DockerHub [default: false; examples: true, false]' + required: false + default: 'false' + +jobs: + build_image: + name: Build Docker image + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.ref }} + fetch-depth: 0 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to DockerHub + if: ${{ github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true') }} + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + + - name: Set version + id: setver + run: cat .env >> $GITHUB_OUTPUT + + - name: Set latest tag + id: setlatest + if: ${{ github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.use_latest_tag == 'true') }} + run: echo "latest=,nspccdev/neofs-rest-gw:latest" >> $GITHUB_OUTPUT + + - name: Build and push image + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile + push: ${{ github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true') }} + platforms: linux/amd64 + build-args: | + NEOGO_HUB_IMAGE=nspccdev/neo-go + NEOGO_HUB_TAG=${{ steps.setver.outputs.NEOGO_VERSION }} + NEOFS_HUB_IMAGE=nspccdev/neofs + NEOFS_HUB_TAG=${{ steps.setver.outputs.AIO_VERSION }} + NEOFS_HTTP_HUB_TAG=${{ steps.setver.outputs.HTTPGW_VERSION }} + NEOFS_REST_HUB_TAG=${{ steps.setver.outputs.RESTGW_VERSION }} + tags: nspccdev/neofs-aio:${{ steps.setver.outputs.AIO_VERSION }}${{ steps.setlatest.outputs.latest }}