This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
desktop/.drone.yml

153 lines
4.0 KiB
YAML
Raw Normal View History

2021-06-17 07:51:40 +00:00
---
2020-10-11 10:19:26 +00:00
kind: pipeline
2021-02-28 13:00:23 +00:00
type: docker
2020-10-18 18:49:33 +00:00
name: release
2020-10-11 10:19:26 +00:00
trigger:
ref:
2021-02-10 17:12:12 +00:00
- refs/heads/main
- "refs/tags/**"
2020-10-11 10:19:26 +00:00
steps:
- name: fetch-tags
image: docker:git
commands:
- git fetch --tags
2020-12-10 14:37:15 +00:00
- name: restore-cache
image: meltwater/drone-cache:dev
pull: true
environment:
AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key
settings:
restore: true
bucket: kolaente.dev-drone-dependency-cache
endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true
cache_key: '{{ .Repo.Name }}_{{ checksum "yarn.lock" }}_{{ arch }}_{{ os }}'
mount:
- '.cache'
2020-10-11 10:19:26 +00:00
- name: build
2021-02-20 14:15:49 +00:00
image: electronuserland/builder:wine-mono
2020-10-11 10:19:26 +00:00
pull: true
2020-12-10 14:37:15 +00:00
environment:
YARN_CACHE_FOLDER: .cache/yarn/
depends_on:
- fetch-tags
- restore-cache
2020-10-11 10:19:26 +00:00
commands:
- export VERSION=${DRONE_TAG##v}
2021-02-10 17:15:28 +00:00
- if [ -z "$$VERSION" ]; then export VERSION=unstable; fi
2020-10-11 10:19:26 +00:00
# TODO: Move to a yarn script
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
2020-10-19 19:56:05 +00:00
- unzip vikunja-frontend-$$VERSION.zip -d frontend
2020-10-17 18:32:17 +00:00
- sed -i 's/\\/api\\/v1//g' frontend/index.html
# Make sure that the -unstable suffix is added to release files
- sed -i "s/\$${version}/$$VERSION/g" package.json
- yarn install
2020-10-11 10:19:26 +00:00
- yarn dist --linux --windows
2020-12-10 14:37:15 +00:00
- name: rebuild-cache
image: meltwater/drone-cache:dev
pull: true
environment:
AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key
settings:
rebuild: true
bucket: kolaente.dev-drone-dependency-cache
endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true
cache_key: '{{ .Repo.Name }}_{{ checksum "yarn.lock" }}_{{ arch }}_{{ os }}'
mount:
- '.cache'
depends_on:
- build
- name: release-latest
2020-10-11 10:19:26 +00:00
image: plugins/s3:1
pull: true
settings:
bucket: vikunja-releases
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true
strip_prefix: dist/
source: dist/*
target: /desktop/unstable/
2020-10-19 18:31:36 +00:00
when:
event:
exclude:
- tag
depends_on: [ build ]
- name: release-version
image: plugins/s3:1
pull: true
settings:
bucket: vikunja-releases
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true
strip_prefix: dist/
source: dist/*
target: /desktop/${DRONE_TAG##v}/
2020-10-19 18:31:36 +00:00
when:
event:
- tag
2020-10-11 10:19:59 +00:00
depends_on: [ build ]
2021-06-17 06:52:09 +00:00
---
kind: pipeline
type: exec
name: release-macos
trigger:
ref:
- refs/heads/main
- "refs/tags/**"
platform:
os: darwin
arch: amd64
steps:
- name: build
environment:
ACCESS_KEY:
from_secret: aws_access_key_id
SECRET_KEY:
from_secret: aws_secret_access_key
commands:
- git fetch --tags
- export VERSION=${DRONE_TAG##v}
- if [ -z "$$VERSION" ]; then export VERSION=unstable; fi
# TODO: Move to a yarn script
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
- unzip vikunja-frontend-$$VERSION.zip -d frontend
2021-06-17 07:51:40 +00:00
- sed -i '' 's/\\/api\\/v1//g' frontend/index.html
2021-06-17 06:52:09 +00:00
# Make sure that the -unstable suffix is added to release files
2021-06-17 07:51:40 +00:00
- sed -i '' "s/\$${version}/$$VERSION/g" package.json
2021-06-17 06:52:09 +00:00
- yarn install
- yarn dist --mac
- mc config host add scw-fr-par https://s3.fr-par.scw.cloud $ACCESS_KEY $SECRET_KEY --api S3v4
- mc cp ./dist/*.dmg scw-fr-par/vikunja-releases/desktop/$VERSION/
- mc cp ./dist/*.dmg.blockmap scw-fr-par/vikunja-releases/desktop/$VERSION/
2021-06-17 06:52:09 +00:00