-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #382 from permaweb/tillathehun0/weavedive-fetch
fix(weavedrive): use fetch in lieu of arweave js client to make graphql calls. Fix graphql operations.
- Loading branch information
Showing
5 changed files
with
338 additions
and
78 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 |
---|---|---|
@@ -0,0 +1,109 @@ | ||
name: 🧶💾 Build & Release WeaveDrive | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "extensions/weavedrive/**" | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "extensions/weavedrive/**" | ||
|
||
# Perform a release using a workflow dispatch | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "semver version to bump to" | ||
required: true | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
test: | ||
if: github.event_name != 'workflow_dispatch' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
|
||
- name: 📥 Download deps | ||
working-directory: extensions/weavedrive | ||
run: | | ||
npm i | ||
- name: ⚡ Run Tests | ||
working-directory: extensions/weavedrive | ||
run: | | ||
npm test | ||
env: | ||
CI: true | ||
|
||
release: | ||
# Releases are performed via a workflow dispatch | ||
if: github.event_name == 'workflow_dispatch' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
concurrency: | ||
group: release | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: main | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
registry-url: "https://registry.npmjs.org" | ||
|
||
- name: 👀 Env | ||
run: | | ||
echo "Event name: ${{ github.event_name }}" | ||
echo "Git ref: ${{ github.ref }}" | ||
echo "GH actor: ${{ github.actor }}" | ||
echo "SHA: ${{ github.sha }}" | ||
VER=`node --version`; echo "Node ver: $VER" | ||
VER=`npm --version`; echo "npm ver: $VER" | ||
- name: 🤓 Set Git User | ||
run: | | ||
git config --global user.name "${{ github.actor }}" | ||
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: ✊ Bump | ||
id: bump | ||
uses: hyper63/[email protected] | ||
with: | ||
bump-to: ${{ github.event.inputs.version }} | ||
package: weavedrive | ||
|
||
- name: ⬆️ Push | ||
run: | | ||
git push | ||
git push --tags | ||
- name: 📥 Download deps | ||
working-directory: extensions/weavedrive | ||
run: | | ||
npm i | ||
# Build aos | ||
- name: 🦠 Publish to NPM | ||
working-directory: extensions/weavedrive | ||
run: | | ||
npm run build | ||
npm publish --access=public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.