Skip to content

Commit

Permalink
disable all workflows temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Pistonight committed Jan 6, 2025
1 parent 59cdd84 commit bc79b16
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 67 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-server:
name: Server
runs-on: ubuntu-latest
container: golang:alpine
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-go@v5
- run: task server:build
- uses: actions/upload-artifact@v4
with:
path: server/build/botw-iss
name: server
retention-days: 3

build-manual:
name: Manual
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: cargo-bins/cargo-binstall@main
- run: cargo-binstall --no-confirm mdbook
- run: task manual:build
- uses: actions/upload-artifact@v4
with:
path: manual/book
name: manual
retention-days: 3
# name: Build
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
#
# jobs:
# build-server:
# name: Server
# runs-on: ubuntu-latest
# container: golang:alpine
# steps:
# - uses: actions/checkout@v4
# - uses: arduino/setup-task@v2
# with:
# version: 3.x
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/setup-go@v5
# - run: task server:build
# - uses: actions/upload-artifact@v4
# with:
# path: server/build/botw-iss
# name: server
# retention-days: 3
#
# build-manual:
# name: Manual
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: arduino/setup-task@v2
# with:
# version: 3.x
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - uses: cargo-bins/cargo-binstall@main
# - run: cargo-binstall --no-confirm mdbook
# - run: task manual:build
# - uses: actions/upload-artifact@v4
# with:
# path: manual/book
# name: manual
# retention-days: 3

# build-legacy:
# name: Legacy App
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Check
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check-server:
name: Server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-go@v5
- run: task server:check

# name: Check
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
#
# jobs:
# check-server:
# name: Server
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: arduino/setup-task@v2
# with:
# version: 3.x
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/setup-go@v5
# - run: task server:check
#

0 comments on commit bc79b16

Please sign in to comment.