FloatingGhost
bad0b9ac7f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
set url to repo use same image as target we have to sudo on this image copy masto file use our builder bundle install include rake install rake just use their conifg re-lock deps update service worker build prod ignore ruby deps make sure we have zip yeet SW stream out to the right places fix URL in reactions add sounds to build fix serviceworker stop circles erroring us out fix onclick fix lookup revert changes to gemfile fix notification display don't fetch unsupported stuff yeet most of SW fix reply references fixes #2 fix emoji_reaction type fix public timeline
28 lines
623 B
YAML
28 lines
623 B
YAML
pipeline:
|
|
build:
|
|
when:
|
|
event:
|
|
- tag
|
|
- push
|
|
image: node:16
|
|
commands:
|
|
- apt-get update && apt-get install -y zip
|
|
- yarn install --frozen-lockfile
|
|
- TARGET=distribution ./build.sh
|
|
- zip mastofe.zip -r distribution
|
|
|
|
release:
|
|
image: akkoma/releaser
|
|
when:
|
|
event:
|
|
- tag
|
|
- push
|
|
secrets:
|
|
- SCW_ACCESS_KEY
|
|
- SCW_SECRET_KEY
|
|
- SCW_DEFAULT_ORGANIZATION_ID
|
|
commands:
|
|
- export SOURCE=mastofe.zip
|
|
- export DEST=scaleway:akkoma-updates/frontend/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/fedibird-fe.zip
|
|
- /bin/sh /entrypoint.sh
|
|
|