Skip to content

Commit

Permalink
revert release
Browse files Browse the repository at this point in the history
  • Loading branch information
pacholoamit committed May 15, 2024
1 parent 605b9b6 commit ad5ff2e
Showing 1 changed file with 45 additions and 13 deletions.
58 changes: 45 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,48 @@ env:
VITE_API_URL: ${{ secrets.VITE_API_URL }}

jobs:
# test-tauri:
# environment: release
# strategy:
# fail-fast: false
# matrix:
# platform: [macos-latest, ubuntu-20.04, windows-latest]

# runs-on: ${{ matrix.platform }}
# steps:
# - uses: actions/checkout@v3

# - name: setup node
# uses: actions/setup-node@v1
# with:
# node-version: 18

# - name: install Rust stable
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# - name: install dependencies (ubuntu only)
# if: matrix.platform == 'ubuntu-20.04'
# run: |
# sudo apt-get update
# sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf

# - name: install app dependencies
# uses: ./.github/actions/yarn-nm-install
# with:
# enable-corepack: false
# cache-install-state: true
# cache-node-modules: true
# - name: Build tauri
# run: yarn build
# - uses: tauri-apps/tauri-action@v0
# env:
# TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
# TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

create-release:
# needs: test-tauri
runs-on: ubuntu-20.04
environment: release
outputs:
Expand All @@ -20,7 +61,7 @@ jobs:
with:
node-version: 18
- name: get version
run: echo "PACKAGE_VERSION=$(node -p \"require('./package.json').version\")" >> $GITHUB_ENV
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: create release
id: create-release
uses: actions/github-script@v6
Expand All @@ -44,15 +85,7 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- platform: 'macos-latest'
args: '--target aarch64-apple-darwin' # For Arm-based Macs (M1 and above)
- platform: 'macos-latest'
args: '--target x86_64-apple-darwin' # For Intel-based Macs
- platform: 'ubuntu-20.04'
args: ''
- platform: 'windows-latest'
args: ''
platform: [macos-latest, ubuntu-20.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -70,24 +103,23 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: install app dependencies
uses: ./.github/actions/yarn-nm-install
with:
enable-corepack: false
cache-install-state: true
cache-node-modules: true
- name: install frontend dependencies
run: yarn install
- name: Build tauri
run: yarn build

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
releaseId: ${{ needs.create-release.outputs.release_id }}
args: ${{ matrix.args }}

publish-release:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit ad5ff2e

Please sign in to comment.