Move release steps in one pipeline step for macos
This commit is contained in:
parent
d7738c83c6
commit
f6e8eb2c0e
100
.drone.yml
100
.drone.yml
@ -46,7 +46,7 @@ steps:
|
|||||||
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
|
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
|
||||||
- unzip vikunja-frontend-$$VERSION.zip -d frontend
|
- unzip vikunja-frontend-$$VERSION.zip -d frontend
|
||||||
- sed -i 's/\\/api\\/v1//g' frontend/index.html
|
- sed -i 's/\\/api\\/v1//g' frontend/index.html
|
||||||
# Make sure that the -main suffix is added to release files
|
# Make sure that the -unstable suffix is added to release files
|
||||||
- sed -i "s/\$${version}/$$VERSION/g" package.json
|
- sed -i "s/\$${version}/$$VERSION/g" package.json
|
||||||
- yarn install
|
- yarn install
|
||||||
- yarn dist --linux --windows
|
- yarn dist --linux --windows
|
||||||
@ -127,104 +127,24 @@ platform:
|
|||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: fetch-tags
|
|
||||||
image: docker:git
|
|
||||||
commands:
|
|
||||||
- git fetch --tags
|
|
||||||
|
|
||||||
- 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'
|
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
environment:
|
environment:
|
||||||
YARN_CACHE_FOLDER: .cache/yarn/
|
ACCESS_KEY:
|
||||||
depends_on:
|
from_secret: aws_access_key_id
|
||||||
- fetch-tags
|
SECRET_KEY:
|
||||||
- restore-cache
|
from_secret: aws_secret_access_key
|
||||||
commands:
|
commands:
|
||||||
|
- git fetch --tags
|
||||||
- export VERSION=${DRONE_TAG##v}
|
- export VERSION=${DRONE_TAG##v}
|
||||||
- if [ -z "$$VERSION" ]; then export VERSION=unstable; fi
|
- if [ -z "$$VERSION" ]; then export VERSION=unstable; fi
|
||||||
# TODO: Move to a yarn script
|
# TODO: Move to a yarn script
|
||||||
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
|
- wget https://dl.vikunja.io/frontend/vikunja-frontend-$$VERSION.zip
|
||||||
- unzip vikunja-frontend-$$VERSION.zip -d frontend
|
- unzip vikunja-frontend-$$VERSION.zip -d frontend
|
||||||
- sed -i 's/\\/api\\/v1//g' frontend/index.html
|
- sed -i 's/\\/api\\/v1//g' frontend/index.html
|
||||||
# Make sure that the -main suffix is added to release files
|
# Make sure that the -unstable suffix is added to release files
|
||||||
- sed -i "s/\$${version}/$$VERSION/g" package.json
|
- sed -i "s/\$${version}/$$VERSION/g" package.json
|
||||||
- yarn install
|
- yarn install
|
||||||
- yarn dist --mac
|
- yarn dist --mac
|
||||||
|
- brew install minio/stable/mc
|
||||||
- name: rebuild-cache
|
- mc config host add scw-fr-par https://s3.fr-par.scw.cloud $ACCESS_KEY $SECRET_KEY --api S3v4
|
||||||
image: meltwater/drone-cache:dev
|
- mc cp ./dist/* scw-fr-par/vikunja-releases/desktop/$VERSION/
|
||||||
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
|
|
||||||
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/
|
|
||||||
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}/
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
depends_on: [ build ]
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user