-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
27 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,32 +21,43 @@ jobs: | |
with: | ||
node-version: 21.x | ||
|
||
- name: Install Tools | ||
- name: Install tools | ||
run: | | ||
sudo apt-get update; | ||
sudo apt-get install -y jq libarchive-dev; | ||
sudo apt-get install -y jq libarchive-dev gnupg; | ||
cd /tmp; | ||
git clone https://github.com/wahern/tarsum --depth=1; | ||
cd tarsum; | ||
make; | ||
sudo cp tarsum /usr/bin/tarsum; | ||
rm -fr /tmp/tarsum; | ||
- name: Build Main Projectc | ||
- name: Build main project | ||
run: ./blazew build | ||
|
||
- name: Build Extensions | ||
- name: Build extensions | ||
run: | | ||
cd extensions; | ||
bash ../scripts/build-extensions.sh; | ||
- name: Build Index | ||
- name: Build index | ||
run: node scripts/extensions.js --mkindex | ||
|
||
- name: Prepare GPG keys for importing | ||
run: echo "${{ secrets.COMMIT_GPG_KEY }}" > private.key | ||
|
||
- name: Import GPG key | ||
run: gpg --import private.key | ||
|
||
- name: Cleanup after importing GPG key | ||
run: rm -f private.key | ||
|
||
- name: Commit and Push Changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Ar Rakin" | ||
git config --global user.signingkey "6AE7B08C68169452" | ||
git config --global commit.gpgsign true | ||
git add . | ||
git commit -m "chore(extensions): build extensions [skip ci]" | ||
git pull origin main | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.