mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: release workflow * feat: move mostly to internal tasks system * feat: migrate object clean to new task system * fix: release not getting good base version * chore: set version v0.3.0 * chore: style * feat: basic task concurrency * feat: temp pages to fill in page links * feat: inital i18n support * feat: localize store page * chore: style * fix: weblate doesn't like multifile thing * fix: update nuxt * feat: improved error logging * fix: using old task api * feat: basic translation docs * feat: add i18n eslint plugin * feat: translate store and auth pages * feat: more translation progress * feat: admin dash i18n progress * feat: enable update check by default in prod * fix: using wrong i18n keys * fix: crash in library sources page * feat: finish i18n work * fix: missing i18n translations * feat: use twemoji for emojis * feat: sanatize object ids * fix: EmojiText's alt text * fix: UserWidget not using links * feat: cache and auth for emoji api * fix: add more missing translations
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
name: Release Workflow
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
release:
|
|
types: [published]
|
|
# This can be used to automatically publish nightlies at UTC nighttime
|
|
schedule:
|
|
- cron: "0 2 * * *" # run at 2 AM UTC
|
|
|
|
jobs:
|
|
web:
|
|
name: Push website Docker image to registry
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-tags: true
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Determine final version
|
|
id: get_final_ver
|
|
run: |
|
|
BASE_VER=v$(jq -r '.version' package.json)
|
|
TODAY=$(date +'%Y.%m.%d')
|
|
|
|
echo "Today will be: $TODAY"
|
|
echo "today=$TODAY" >> $GITHUB_OUTPUT
|
|
|
|
if [[ "${{ github.event_name }}" == "release" ]]; then
|
|
FINAL_VER="$BASE_VER"
|
|
else
|
|
FINAL_VER="${BASE_VER}-nightly.$TODAY"
|
|
fi
|
|
|
|
echo "Drop's release tag will be: $FINAL_VER"
|
|
echo "final_ver=$FINAL_VER" >> $GITHUB_OUTPUT
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
buildkitd-flags: --debug
|
|
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
ghcr.io/drop-OSS/drop
|
|
tags: |
|
|
type=schedule,pattern=nightly
|
|
type=schedule,pattern=nightly.${{ steps.get_final_ver.outputs.today }}
|
|
type=semver,pattern=v{{version}}
|
|
type=semver,pattern=v{{major}}.{{minor}}
|
|
type=semver,pattern=v{{major}}
|
|
type=ref,event=branch,prefix=branch-
|
|
type=ref,event=pr
|
|
type=sha
|
|
# set latest tag for stable releases
|
|
type=raw,value=latest,enable=${{ github.event_name == 'release' && github.event.release.prerelease == false }}
|
|
|
|
- name: Build and push image
|
|
id: build-and-push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
provenance: mode=max
|
|
sbom: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
build-args: |
|
|
BUILD_DROP_VERSION=${{ steps.get_final_ver.outputs.final_ver }}
|