Skip to content

Commit

Permalink
remove mac and linux for now
Browse files Browse the repository at this point in the history
  • Loading branch information
yazninja committed Jun 2, 2024
1 parent 5a546d3 commit 7178be0
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,53 +33,53 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
assets: '["dist/wuwa-tweaks.exe"]'
overwrite: true
build-mac:
runs-on: darwin-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Init Bun
uses: oven-sh/[email protected]
with:
bun-version: latest
- name: Install Dependencies
run: bun install
- name: Build Mac
run: bun run build-mac
- uses: actions/download-artifact@v4
with:
path: dist/
- name: Display structure of downloaded files
run: ls -R dist/
- name: Upload to Releases
uses: dothq/[email protected]
with:
version: ${{ github.ref_name }}
github-token: ${{ secrets.GITHUB_TOKEN }}
assets: '["dist/wuwa-tweaks-mac"]'
overwrite: true
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Init Bun
uses: oven-sh/[email protected]
with:
bun-version: latest
- name: Install Dependencies
run: bun install
- name: Build Linux
run: bun run build-linux
- uses: actions/download-artifact@v4
with:
path: dist/
- name: Display structure of downloaded files
run: ls -R dist/
- name: Upload to Releases
uses: dothq/[email protected]
with:
version: ${{ github.ref_name }}
github-token: ${{ secrets.GITHUB_TOKEN }}
assets: '["dist/wuwa-tweaks-linux"]'
overwrite: true
# build-mac:
# runs-on: macos-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Init Bun
# uses: oven-sh/[email protected]
# with:
# bun-version: latest
# - name: Install Dependencies
# run: bun install
# - name: Build Mac
# run: bun run build-mac
# - uses: actions/download-artifact@v4
# with:
# path: dist/
# - name: Display structure of downloaded files
# run: ls -R dist/
# - name: Upload to Releases
# uses: dothq/[email protected]
# with:
# version: ${{ github.ref_name }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# assets: '["dist/wuwa-tweaks-mac"]'
# overwrite: true
# build-linux:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Init Bun
# uses: oven-sh/[email protected]
# with:
# bun-version: latest
# - name: Install Dependencies
# run: bun install
# - name: Build Linux
# run: bun run build-linux
# - uses: actions/download-artifact@v4
# with:
# path: dist/
# - name: Display structure of downloaded files
# run: ls -R dist/
# - name: Upload to Releases
# uses: dothq/[email protected]
# with:
# version: ${{ github.ref_name }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# assets: '["dist/wuwa-tweaks-linux"]'
# overwrite: true

0 comments on commit 7178be0

Please sign in to comment.