We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 687dd09 commit 1dc029dCopy full SHA for 1dc029d
1 file changed
.github/workflows/build.yaml
@@ -9,7 +9,10 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
container:
12
- image: oven/bun:debian
+ image: abdulari/test:1
13
+ credentials:
14
+ username: ${{ secrets.DOCKER_USERNAME }}
15
+ password: ${{ secrets.DOCKER_PASSWORD }}
16
permissions:
17
contents: write
18
steps:
@@ -21,6 +24,9 @@ jobs:
21
24
22
25
- name: deploy to gh-pages
23
26
run: |
- git worktree add -B gh-pages gh-pages origin/gh-pages
27
+ git config --global --add safe.directory /__w/react-demo/react-demo
28
+ git config --global user.name "github-actions[bot]"
29
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
30
+ git worktree add -B gh-pages gh-pages
31
cp -r ui/dist/* gh-pages/
32
cd gh-pages && git add . && git commit -m "Update gh-pages" && git push origin gh-pages
0 commit comments