Skip to content

Commit

Permalink
release: v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arman19941113 committed May 23, 2024
1 parent c58e54c commit a5168ce
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 2 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: 'publish'

on:
push:
branches:
- release

# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.

jobs:
publish-tauri:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- platform: 'macos-latest' # for Arm based macs (M1 and above).
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest' # for Intel based macs.
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04'
args: ''
- platform: 'windows-latest'
args: ''

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

- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9.0.5

- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20.10.0
cache: 'pnpm'

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: pnpm install

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__
releaseName: 'Rename Photos v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: false
prerelease: false
includeUpdaterJson: false
args: ${{ matrix.args }}
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Rename Photos",
"version": "0.0.0",
"version": "0.0.1",
"identifier": "fun.armantang",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down Expand Up @@ -30,7 +30,7 @@
"bundle": {
"active": true,
"targets": "all",
"category": "Utility",
"category": "Utilities",
"shortDescription": "A cross-platform desktop-app for renaming photos using EXIF data",
"icon": [
"icons/32x32.png",
Expand Down

0 comments on commit a5168ce

Please sign in to comment.