Nothing to see here #114
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: "Build" | |
on: | |
- push | |
- pull_request | |
jobs: | |
check: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- run: yarn install --check-cache | |
working-directory: frontend | |
build-backend: | |
name: "Build Backend Application" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "liberica" | |
- run: ./gradlew check distTar | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "Backend Application" | |
path: "build/distributions/backend.tar" | |
retention-days: 1 | |
build-frontend: | |
name: "Build Frontend Application" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- working-directory: frontend | |
run: yarn install | |
- working-directory: frontend | |
run: yarn run build | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "Frontend Application" | |
path: "frontend/dist/" | |
retention-days: 1 | |
build-and-push-backend-image: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
needs: | |
- build-backend | |
- build-frontend | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: "Backend Application" | |
path: "build/distributions/" | |
- name: "Untar files" | |
run: mkdir -p build/install && tar -xvf build/distributions/backend.tar -C $_ | |
- uses: actions/download-artifact@v4 | |
with: | |
name: "Frontend Application" | |
path: "frontend/dist/" | |
- name: "Set up QEMU" | |
uses: docker/setup-qemu-action@v3 | |
- name: "Set up Docker Buildx" | |
uses: docker/setup-buildx-action@v3 | |
- name: "Login to GHCR" | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Build and push" | |
uses: docker/build-push-action@v5 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
push: true | |
tags: | | |
ghcr.io/heapy/komok:main | |
ghcr.io/heapy/komok:b${{ github.run_number }} |