Merge pull request #146 from Suwayomi/main #127
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
# Copyright (c) 2023 Contributors to the Suwayomi project | |
# | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Build | |
on: | |
push: | |
branches: ['Release'] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
GenTag: | |
outputs: | |
value: ${{steps.GenTagName.outputs.value}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate Tag Name | |
id: GenTagName | |
run: | | |
genTag="r$(git rev-list HEAD --count)" | |
echo "$genTag" | |
echo "value=$genTag" >> $GITHUB_OUTPUT | |
buildDocker: | |
needs: GenTag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- id: string | |
uses: ASzc/change-string-case-action@v5 | |
with: | |
string: ${{ github.repository_owner }}/${{ github.event.repository.name }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
build-args: version=${{ needs.GenTag.outputs.value }} | |
push: true | |
tags: | | |
ghcr.io/${{ steps.string.outputs.lowercase }}:latest, | |
ghcr.io/${{ steps.string.outputs.lowercase }}:${{ needs.GenTag.outputs.value }}, | |
${{ steps.string.outputs.lowercase }}:latest, | |
${{ steps.string.outputs.lowercase }}:${{ needs.GenTag.outputs.value }}, | |
build: | |
needs: GenTag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Use bun 1.0.18 | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install bun dependencies | |
run: bun i | |
- run: bun run build | |
- run: bun run build-md5 | |
- run: sed -i "s@BUILD_VERSION_PLACEHOLDER@${{ needs.GenTag.outputs.value }}@" ./build/index.html | |
- run: echo "${{ needs.GenTag.outputs.value }}" > ./build/revision | |
- name: Generate zip | |
working-directory: ./build | |
run: zip -r Suwayomi-VUI-Web-${{ needs.GenTag.outputs.value }}.zip ./* | |
- name: Upload CI Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: './build/Suwayomi-VUI-Web-${{ needs.GenTag.outputs.value }}.zip, ./buildZip/md5sum' | |
allowUpdates: 'true' | |
tag: ${{ needs.GenTag.outputs.value }} |