-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create main.yml to add protocol.land integration
- Loading branch information
1 parent
559de72
commit 64a405f
Showing
1 changed file
with
34 additions
and
0 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,34 @@ | ||
name: Protocol Land Sync | ||
on: | ||
# Run with every push to 'main' branch: | ||
push: | ||
branches: | ||
- 'main' | ||
# Run Manually: | ||
#workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout repo (default branch)' | ||
uses: actions/checkout@v3 | ||
with: | ||
# fetch all history for all branches: | ||
fetch-depth: 0 | ||
- name: 'Checkout all branches' | ||
run: | | ||
default_branch=$(git branch | grep '*' | sed 's/\* //') | ||
for abranch in $(git branch -a | grep -v HEAD | grep remotes | sed "s/remotes\/origin\///g"); do git checkout $abranch ; done | ||
git checkout $default_branch | ||
git branch -a | ||
- name: 'Setup node 18' | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
- name: 'Sync repo to Protocol Land' | ||
run: npx @protocol.land/sync | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPO_TITLE: ${{ github.event.repository.name }} | ||
REPO_DESCRIPTION: ${{ github.event.repository.description }} | ||
WALLET: ${{ secrets.WALLET }} |