We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 687dd09 commit eb9ef04Copy full SHA for eb9ef04
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,7 @@ 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 worktree add -B gh-pages gh-pages
29
cp -r ui/dist/* gh-pages/
30
cd gh-pages && git add . && git commit -m "Update gh-pages" && git push origin gh-pages
0 commit comments