Switch fetch-package to use Github instead of Buildkite (#412)

* Switch fetch-package to use Github instead of Buildkite

* Tweak build to version match better

* Fix version match fetching

* Remove check for `BUILDKITE_API_KEY` as it is no longer required

* Fix develop fetching
This commit is contained in:
Michael Telatynski
2022-09-05 10:49:39 +01:00
committed by GitHub
parent 497c4695fd
commit b14a1eb3a8
2 changed files with 27 additions and 79 deletions

View File

@@ -20,8 +20,13 @@ jobs:
- name: Install Deps
run: "yarn install --pure-lockfile"
- name: Fetch Element Web (develop)
if: github.event.pull_request.base.ref == 'develop'
run: yarn run fetch --noverify develop -d element.io/nightly
- name: Fetch Element Web
run: yarn run fetch --noverify --cfgdir element.io/nightly
if: github.event.pull_request.base.ref != 'develop'
run: yarn run fetch --noverify --cfgdir element.io/release
- uses: actions/upload-artifact@v3
with: