Skip to content

Refactor

Refactor #333

Workflow file for this run

name: client
on:
workflow_dispatch:
push:
paths:
- 'client/**'
branches:
- main
tags:
- "v*.*.*"
pull_request:
paths:
- 'client/**'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Check Formatting
run: npm run prettier
- name: Build
run: npm run build
- name: Docker Tags
id: meta
uses: docker/metadata-action@v4
with:
images: multiparty/bwwc-client
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Login to Docker Hub
uses: docker/login-action@v2
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build & Push Docker Build
uses: docker/build-push-action@v4
with:
context: ./client
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Push to Staging
uses: fjogeleit/http-request-action@v1
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
with:
method: "POST"
url: ${{ secrets.PORTAINER_WEBHOOK_STAGING }}
preventFailureOnNoResponse: true
- name: Update Training Environment
if: startsWith(github.ref, 'refs/tags/v')
uses: fjogeleit/http-request-action@v1
with:
method: POST
url: ${{ secrets.PORTAINER_WEBHOOK_TRAINING }}
preventFailureOnNoResponse: true
- name: Push to Production
uses: fjogeleit/http-request-action@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
method: "POST"
url: ${{ secrets.PORTAINER_WEBHOOK_PRODUCTION }}
preventFailureOnNoResponse: true