rollback serve task #20
Workflow file for this run
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
name: Docker Image CI | |
on: | |
# release: | |
# types: [published] | |
push: | |
tags: | |
- '*' | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- name: Copy patches for Docker Buildx | |
run: cp -r patches/* packages/graphql-mesh/patches | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract version from tag | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- name: Build and push image to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./packages/graphql-mesh | |
push: true | |
tags: bouyguestelecom/graphql-mesh:${{ steps.get_version.outputs.VERSION }},bouyguestelecom/graphql-mesh:latest | |
platforms: linux/amd64,linux/arm64 |