We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83069c8 commit 80089d3Copy full SHA for 80089d3
.github/workflows/benchmarks.yml
@@ -10,12 +10,13 @@ jobs:
10
permissions:
11
contents: write
12
steps:
13
- - name: Checkout from gno repository
+ - name: Checkout
14
uses: actions/checkout@v4
15
- with:
16
- repository: gnolang/gno
17
- ref: 'gh-benchmarks'
18
- - name: Commit & Push changes
19
- uses: stefanzweifel/git-auto-commit-action@v5
20
21
- branch: gh-pages
+ - name: Fetch Branch from Gno Repository
+ run: |
+ git remote add upstream https://github.com/gnolang/gno.git
+ git fetch upstream gh-benchmarks
+ git checkout -b gh-pages upstream/gh-benchmarks
+ - name: Push Branch to gh-pages
22
+ git push origin gh-pages --force
0 commit comments