Run Build Test #76
Workflow file for this run
This file contains hidden or 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: "Run Build Test" | |
| on: | |
| push: | |
| paths: | |
| - 'Dockerfile' | |
| - 'Dockerfile*' | |
| - 'Dockerfile-*' | |
| - 'frontend/package.json' | |
| - 'frontend/yarn.lock' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| component: [chen] | |
| version: [v4] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/setup-buildx-action@v3 | |
| - name: Prepare Build | |
| run: | | |
| sed -i 's@registry.npmmirror.com@registry.yarnpkg.com@g' frontend/yarn.lock | |
| sed -i 's@^FROM registry.fit2cloud.com/jumpserver@FROM ghcr.io/jumpserver@g' Dockerfile-ee | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build CE Image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| push: true | |
| file: Dockerfile | |
| tags: ghcr.io/jumpserver/${{ matrix.component }}:${{ matrix.version }}-ce | |
| platforms: linux/amd64 | |
| build-args: | | |
| VERSION=${{ matrix.version }} | |
| APT_MIRROR=http://deb.debian.org | |
| NPM_REGISTRY=https://registry.yarnpkg.com | |
| outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Build EE Image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| push: false | |
| file: Dockerfile-ee | |
| tags: ghcr.io/jumpserver/${{ matrix.component }}:${{ matrix.version }} | |
| platforms: linux/amd64 | |
| build-args: | | |
| VERSION=${{ matrix.version }} | |
| outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |