Merge remote-tracking branch 'refs/remotes/origin/main'
All checks were successful
Deploy / Deploy (push) Successful in 1m31s
All checks were successful
Deploy / Deploy (push) Successful in 1m31s
This commit is contained in:
commit
195ee9d1da
1 changed files with 5 additions and 3 deletions
|
@ -7,7 +7,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
name: Deploy
|
name: Deploy
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -15,11 +15,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: 'stable' # The Go version to download (if necessary) and use.
|
go-version: 'stable' # The Go version to download (if necessary) and use.
|
||||||
- run: |
|
- run: |
|
||||||
|
mkdir /workspace/bin
|
||||||
|
export GOBIN=/workspace/bin
|
||||||
go install github.com/packwiz/packwiz@latest
|
go install github.com/packwiz/packwiz@latest
|
||||||
cd TrotCraft/client
|
cd TrotCraft/client
|
||||||
/home/runner/go/bin/packwiz refresh --build
|
/workspace/bin/packwiz refresh --build
|
||||||
cd ../server
|
cd ../server
|
||||||
/home/runner/go/bin/packwiz refresh --build
|
/workspace/bin/packwiz refresh --build
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
uses: cloudflare/wrangler-action@v3
|
uses: cloudflare/wrangler-action@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue