mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* fix: add gitattribute rules for woff2 files * feat: add lifi widget + fixes minor issues * fix: remove unused packages + clean constants declaration and config * fix: update dockerfile and github ci workflows * fix: env variable naming issue * fix: bridge mode alt value issue + remove button component
90 lines
3.1 KiB
YAML
90 lines
3.1 KiB
YAML
name: Bridge UI Build and Publish
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/workflows/bridge-ui-publish.yml'
|
|
- 'bridge-ui/**'
|
|
- '!bridge-ui/**/*.md'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/workflows/bridge-ui-publish.yml'
|
|
- 'bridge-ui/**'
|
|
- '!bridge-ui/**/*.md'
|
|
|
|
jobs:
|
|
publish:
|
|
if: github.event.pull_request.head.repo.fork == false
|
|
# ~1 min saved vs small
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-med
|
|
env:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get version from package.json
|
|
id: package-version
|
|
uses: martinbeentjes/npm-get-version-action@master
|
|
with:
|
|
path: ./bridge-ui
|
|
|
|
- name: Set Docker Tag
|
|
id: docker-tag
|
|
run: echo "DOCKER_TAG=${GITHUB_SHA:0:7}-$(date +%s)-bridge-ui-${{ steps.package-version.outputs.current-version }}" | tee $GITHUB_ENV
|
|
|
|
- name: Login to Docker Repository
|
|
if: ${{ env.DOCKERHUB_USERNAME != '' && env.DOCKERHUB_TOKEN != '' }}
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Docker Image Build and Publish
|
|
id: docker-build-publish
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./bridge-ui/Dockerfile
|
|
push: ${{ env.DOCKERHUB_USERNAME != '' && env.DOCKERHUB_TOKEN != '' }}
|
|
tags: consensys/linea-bridge-ui:${{ env.DOCKER_TAG }}
|
|
build-args: |
|
|
ENV_FILE=./bridge-ui/.env.production
|
|
NEXT_PUBLIC_WALLET_CONNECT_ID=${{ env.NEXT_PUBLIC_WALLET_CONNECT_ID }}
|
|
NEXT_PUBLIC_INFURA_ID=${{ env.NEXT_PUBLIC_INFURA_ID }}
|
|
NEXT_PUBLIC_DYNAMIC_ENVIRONMENT_ID=${{ env.NEXT_PUBLIC_DYNAMIC_ENVIRONMENT_ID }}
|
|
NEXT_PUBLIC_LIFI_API_KEY=${{ env.NEXT_PUBLIC_LIFI_API_KEY }}
|
|
cache-from: type=registry,ref=consensys/linea-bridge-ui:buildcache
|
|
cache-to: type=registry,ref=consensys/linea-bridge-ui:buildcache,mode=max
|
|
env:
|
|
NEXT_PUBLIC_WALLET_CONNECT_ID: ${{ secrets.PUBLIC_WALLET_CONNECT_ID }}
|
|
NEXT_PUBLIC_INFURA_ID: ${{ secrets.PUBLIC_BRIDGE_UI_INFURA_ID }}
|
|
NEXT_PUBLIC_DYNAMIC_ENVIRONMENT_ID: ${{ secrets.PUBLIC_DYNAMIC_ENVIRONMENT_ID }}
|
|
NEXT_PUBLIC_LIFI_API_KEY: ${{ secrets.PUBLIC_LIFI_API_KEY }}
|
|
|
|
test-build:
|
|
if: github.event.pull_request.head.repo.fork == true
|
|
# ~1 min saved vs small
|
|
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-med
|
|
name: Test Build Bridge UI
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup nodejs environment
|
|
uses: ./.github/actions/setup-nodejs
|
|
with:
|
|
node-version: 18.17.0
|
|
pnpm-install-options: '--frozen-lockfile --prefer-offline'
|
|
|
|
- name: Test Build Bridge UI
|
|
run: pnpm run -F bridge-ui build;
|