[DOP-22621] fix some bugs (#54) #11
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: Release | |
on: | |
push: | |
branches: | |
- develop | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
name: Build & push frontend image to Dockerhub | |
runs-on: ubuntu-latest | |
if: github.repository == 'MobileTeleSystems/syncmaster-ui' # prevent running on forks | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set tag | |
id: set_tag | |
run: | | |
if [[ "${{ github.ref_type }}" == "branch" && "${{ github.ref_name }}" == "develop" ]]; then | |
echo "TAG=mtsrus/syncmaster-ui:develop" >> $GITHUB_ENV | |
elif [[ "${{ github.ref_type }}" == "tag" ]]; then | |
echo "TAG=mtsrus/syncmaster-ui:latest,mtsrus/syncmaster-ui:${{ github.ref_name }}" >> $GITHUB_ENV | |
fi | |
- name: Build UI image | |
uses: docker/build-push-action@v6 | |
with: | |
tags: ${{ env.TAG }} | |
context: . | |
file: ./docker/Dockerfile | |
target: prod | |
pull: true | |
push: true | |
cache-to: type=inline | |
cache-from: mtsrus/syncmaster-ui:develop | |
platforms: | | |
linux/amd64 | |
linux/arm64/v8 | |
provenance: mode=max | |
- name: Update DockerHub Description | |
uses: peter-evans/dockerhub-description@v4 | |
if: github.ref_type == 'tag' | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# this requires token with read+write+delete permissions. read+write is not enough! | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: mtsrus/syncmaster-ui | |
short-description: ${{ github.event.repository.description }} | |
enable-url-completion: true |