Nightly Release #514
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: Nightly Release | |
| on: | |
| schedule: | |
| - cron: "0 0 * * SUN,WED" | |
| workflow_dispatch: {} | |
| jobs: | |
| check-date: | |
| runs-on: ubuntu-latest | |
| name: Check latest commit | |
| outputs: | |
| should_run: ${{ steps.check.outputs.should_run }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - id: check | |
| run: | | |
| test -n "$(git rev-list --after="24 hours" ${{ github.sha }})" \ | |
| && echo "should_run=true" >>$GITHUB_OUTPUT \ | |
| || echo "should_run=false" >>$GITHUB_OUTPUT | |
| test-frontend: | |
| name: Lint and test frontend | |
| needs: check-date | |
| if: ${{ needs.check-date.outputs.should_run == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: npm install | |
| working-directory: betanin_client | |
| - name: Lint | |
| run: npm run lint | |
| working-directory: betanin_client | |
| - name: Check formatting | |
| run: npm run check-formatting | |
| working-directory: betanin_client | |
| test-backend: | |
| name: Lint and test backend | |
| needs: check-date | |
| if: ${{ needs.check-date.outputs.should_run == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies | |
| run: uv sync --all-extras | |
| - name: Lint and check formatting | |
| run: uv run ruff check $(git ls-files "*.py") && uv run ruff format --check $(git ls-files "*.py") | |
| build-release: | |
| name: Build and release Docker image | |
| needs: [check-date, test-frontend, test-backend] | |
| if: ${{ needs.check-date.outputs.should_run == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Login into DockerHub | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Login into GitHub Container Registry | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.CR_PAT }} | |
| - name: Generate short hash | |
| run: | | |
| _short_hash=${{ github.sha }} | |
| echo "SHORT_HASH=${_short_hash:0:7}" >> $GITHUB_ENV | |
| - name: Build and Push | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
| push: true | |
| tags: | | |
| ghcr.io/${{ github.repository }}:${{ env.SHORT_HASH }} | |
| ghcr.io/${{ github.repository }}:nightly | |
| ${{ github.repository }}:${{ env.SHORT_HASH }} | |
| ${{ github.repository }}:nightly |