Skip to content

Commit

Permalink
Comment out windows and linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dguenther committed Oct 23, 2023
1 parent 2e3bc4e commit 216037e
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@ permissions:
on: push

jobs:
publish_on_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.13
- name: Install dependencies
run: yarn install --network-timeout 600000
- name: Install AzureSignTool
run: dotnet tool install --global AzureSignTool
- name: Build and publish release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
run: yarn build
# publish_on_windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 18.13
# - name: Install dependencies
# run: yarn install --network-timeout 600000
# - name: Install AzureSignTool
# run: dotnet tool install --global AzureSignTool
# - name: Build and publish release
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
# AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
# AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
# AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
# AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
# run: yarn build

publish_on_mac_arm64:
runs-on: [self-hosted, macOS, ARM64]
Expand Down Expand Up @@ -127,16 +127,16 @@ jobs:
# run: |
# security delete-keychain $RUNNER_TEMP/app-signing.keychain-db

publish_on_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.13
- name: Install dependencies
run: yarn
- name: Build and publish release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn build
# publish_on_linux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 18.13
# - name: Install dependencies
# run: yarn
# - name: Build and publish release
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: yarn build

0 comments on commit 216037e

Please sign in to comment.