Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release actions #351

Merged
merged 2 commits into from
Aug 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
channel: 'stable'

- name: Clone Olm
run: git clone https://gitlab.matrix.org/matrix-org/olm.git
run: |
git clone https://gitlab.matrix.org/matrix-org/olm.git
cd ./olm
git checkout 7e0c8277032e40308987257b711b38af8d77cc69

- name: Build Olm
run: |
Expand Down Expand Up @@ -352,7 +355,8 @@ jobs:
cd $PROJECT_PATH
cd assets/js
rm -r package
curl -L 'https://gitlab.com/famedly/company/frontend/libraries/olm/-/jobs/artifacts/master/download?job=build:js' > olm.zip
curl -L 'https://github.com/famedly/olm/releases/download/v2.0.0/olm.zip' > olm.zip
sha256sum -c <<< '644bbc7cdcf5931fb64c1b556a3672830ca2af6615caa814458785043895c6df olm.zip'
unzip olm.zip
rm olm.zip
mv javascript package
Expand Down
Loading