Skip to content

Commit

Permalink
Resolve first issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dacoaster committed Mar 28, 2024
1 parent 48d05b8 commit c8b555a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,23 @@ jobs:
node-version: [16.x]
steps:
- uses: actions/checkout@v3

- run: |
sudo apt install git cmake pkg-config libx11-dev libxtst-dev libxt-dev libxinerama-dev libx11-xcb-dev libxkbcommon-dev libxkbcommon-x11-dev libxkbfile-dev
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install dependencies
run: yarn install

- name: Install OAuth server dependencies
run: yarn install
working-directory: ./server

- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -37,16 +44,22 @@ jobs:
node-version: [16.x]
steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- run: pip install setuptools

- name: Install dependencies
run: yarn install

- name: Install OAuth server dependencies
run: yarn install
working-directory: ./server

- name: Prep key for app notarization
run: |
mkdir -p ~/private_keys/
Expand All @@ -71,20 +84,25 @@ jobs:
node-version: [16.x]
steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install dependencies
run: yarn install

- name: Install OAuth server dependencies
run: yarn install
working-directory: ./server

- name: Prep key for app notarization
run: |
mkdir -p ~/private_keys/
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -105,21 +123,26 @@ jobs:
node-version: [16.x]
steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install dependencies
run: yarn install

- name: Install OAuth server dependencies
run: yarn install
working-directory: ./server

- name: Download and Unzip eSignerCKA Setup
run: |
Invoke-WebRequest -OutFile CodeSignTool.zip "https://www.ssl.com/download/codesigntool-for-windows"
Expand-Archive -Force CodeSignTool.zip
Remove-Item CodeSignTool.zip
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit c8b555a

Please sign in to comment.