mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
ac2a83a7a6
* User HTTP instead of HTTPS when fetching icon in docker internal network * Add debug statement. * Revert "Add debug statement." This reverts commit7fbb12a4bd
. * Revert "User HTTP instead of HTTPS when fetching icon in docker internal network" This reverts commit498de660ba
. * Always replace host with internal host * Fix lint script * Remove prettier from pre-commit --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
100 lines
2.2 KiB
YAML
100 lines
2.2 KiB
YAML
pipeline:
|
|
fetch_git_submodules:
|
|
image: node:14-alpine
|
|
commands:
|
|
- apk add git
|
|
- git submodule init
|
|
- git submodule update --recursive --remote
|
|
# - git fetch --tags
|
|
|
|
yarn:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn
|
|
|
|
yarn_lint:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn lint
|
|
|
|
yarn_build_dev:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn build:dev
|
|
|
|
nightly_build:
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: dessalines/lemmy-ui
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
tags:
|
|
- dev
|
|
when:
|
|
event:
|
|
- cron
|
|
|
|
publish_release_docker_image_amd:
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: dessalines/lemmy-ui
|
|
auto_tag: true
|
|
auto_tag_suffix: linux-amd64
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
event: tag
|
|
platform: linux/arm64
|
|
|
|
publish_release_docker_image_arm:
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: dessalines/lemmy-ui
|
|
auto_tag: true
|
|
auto_tag_suffix: linux-arm64
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
event: tag
|
|
platform: linux/amd64
|
|
|
|
publish_release_docker_manifest:
|
|
image: plugins/manifest
|
|
settings:
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
target: "dessalines/lemmy-ui:${CI_COMMIT_TAG}"
|
|
template: "dessalines/lemmy-ui:${CI_COMMIT_TAG}-OS-ARCH"
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
ignore_missing: true
|
|
when:
|
|
event: tag
|
|
|
|
publish_latest_release_docker_manifest:
|
|
image: plugins/manifest
|
|
settings:
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
target: "dessalines/lemmy-ui:latest"
|
|
template: "dessalines/lemmy-ui:${CI_COMMIT_TAG}-OS-ARCH"
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
ignore_missing: true
|
|
when:
|
|
event: tag
|