Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolabosco87 committed Feb 18, 2023
1 parent b512219 commit a2d7b01
Show file tree
Hide file tree
Showing 12 changed files with 1,417 additions and 1,433 deletions.
227 changes: 162 additions & 65 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,92 +1,189 @@
name: 'Release'
name: publish

on:
push:
branches:
- release

jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-20.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}

steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: get version
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: create release
id: create-release
uses: actions/github-script@v6
with:
script: |
const { data } = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: `app-v${process.env.PACKAGE_VERSION}`,
name: `Desktop App v${process.env.PACKAGE_VERSION}`,
body: 'Take a look at the assets to download and install this app.',
draft: true,
prerelease: false
})
return data.id
build-tauri:
needs: create-release
permissions:
contents: write
publish-tauri:
strategy:
fail-fast: false
fail-fast: true
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [windows-latest] # macos-latest, ubuntu-latest,

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
with:
persist-credentials: false

- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v1
with:
node-version: 16

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf libasound2-dev libudev-dev pkg-config
- name: install app dependencies and build it
run: yarn && 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 }}
tagName: quick-tracker-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Quick Tracker v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false

publish-release:
permissions:
contents: write
runs-on: ubuntu-20.04
needs: [create-release, build-tauri]
# name: 'publish'
# on:
# push:
# branches:
# - release
# tags:
# - v0.*

steps:
- name: publish release
id: publish-release
uses: actions/github-script@v6
env:
release_id: ${{ needs.create-release.outputs.release_id }}
with:
script: |
github.rest.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
draft: false,
prerelease: false
})
# jobs:
# create-release:
# permissions:
# contents: write
# runs-on: ubuntu-20.04
# outputs:
# release_id: ${{ steps.create-release.outputs.result }}

# steps:
# - uses: actions/checkout@v3
# - name: setup node
# uses: actions/setup-node@v3
# with:
# node-version: 16
# - name: get version
# run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
# - name: create release
# id: create-release
# uses: actions/github-script@v6
# with:
# script: |
# const { data } = await github.rest.repos.createRelease({
# owner: context.repo.owner,
# repo: context.repo.repo,
# tag_name: `quick-tracker-v${process.env.PACKAGE_VERSION}`,
# name: `Quick Tracker v${process.env.PACKAGE_VERSION}`,
# body: 'Take a look at the assets to download and install this app.',
# draft: true,
# prerelease: false
# })

# return data.id

# build-tauri:
# needs: create-release
# permissions:
# contents: write
# strategy:
# fail-fast: false
# matrix:
# platform: [windows-latest] # macos-latest, ubuntu-20.04,

# runs-on: ${{ matrix.platform }}
# steps:
# - uses: actions/checkout@v3
# - name: setup node
# uses: actions/setup-node@v3
# with:
# node-version: 16
# - name: install Rust stable
# uses: dtolnay/rust-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 libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
# - name: install app dependencies and build it
# run: npm i && npm run 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 }}
# tagName: quick-tracker-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
# releaseName: 'Quick Tracker v__VERSION__'

# publish-release:
# permissions:
# contents: write
# runs-on: ubuntu-20.04
# needs: [create-release, build-tauri]

# steps:
# - name: publish release
# id: publish-release
# uses: actions/github-script@v6
# env:
# release_id: ${{ needs.create-release.outputs.release_id }}
# with:
# script: |
# github.rest.repos.updateRelease({
# owner: context.repo.owner,
# repo: context.repo.repo,
# release_id: process.env.release_id,
# draft: false,
# prerelease: false
# })


# jobs:
# publish-tauri:
# permissions:
# contents: write
# strategy:
# fail-fast: false
# matrix:
# platform: [windows-latest] # macos-latest, ubuntu-20.04,

# runs-on: ${{ matrix.platform }}
# steps:
# - uses: actions/checkout@v3
# - name: setup node
# uses: actions/setup-node@v3
# with:
# node-version: 16
# - name: install Rust stable
# uses: dtolnay/rust-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 libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
# - name: install app dependencies and build it
# run: npm i && npm run 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:
# tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
# releaseName: 'App v__VERSION__'
# releaseBody: 'See the assets to download this version and install.'
# releaseDraft: true
# prerelease: false
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# Tauri + React + Typescript
# Quick Tracker

This template should help get you started developing with Tauri, React and Typescript in Vite.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
App that reminds you to track your activities.
11 changes: 11 additions & 0 deletions latest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "v0.0.1",
"notes": "Test version",
"pub_date": "2023-02-18T10:23:31.543Z",
"platforms": {
"windows-x86_64": {
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVRQmVnK1c2a3BBSHRETit6Y3ZNNGhZYXIxR3l6bDJHbnpJNDRXV2NsbC8xRjBhRTFiN0s5VlYrSTI3eHlESlJoOS9DbFJ2UWd1MjRjZWJBL21wUUdsQ2Rnam9IaG40UEFrPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjc2NjUwMzk1CWZpbGU6cXVpY2stdHJhY2tlcl8wLjAuMV94NjRfZW4tVVMubXNpLnppcAprQlVrSnhNd2ZxZ3dSaWlOdThzeUlsVmZpUVE5SmhVZmo3ZG1PWk1VbVdGRHdDMHdSK0RGRDNHd3U1RnNMUkJTNjdaM1ZjTDFRSmRFdzBGMmFyb1NBQT09Cg==",
"url": "https://github.com/nicolabosco87/quick-tracker/releases/download/quick-tracker-v0.0.1/quick-tracker_0.0.1_x64_en-US.msi.zip"
}
}
}
Loading

0 comments on commit a2d7b01

Please sign in to comment.