Skip to content

Commit

Permalink
GHA: split Tauri and Docker in two workflows (#462)
Browse files Browse the repository at this point in the history
* chore: split tauri and docker image on manual trigger

* chore: add version and latest as options of the trigger

* chore: tauri action make draft release configurable

* chore: desc
  • Loading branch information
tiero authored Nov 1, 2023
1 parent 849bab4 commit 7dd0916
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 36 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/on-push-server.yaml

This file was deleted.

51 changes: 51 additions & 0 deletions .github/workflows/on-workflow-dispatch-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: 🚀 Docker Image

on:
workflow_dispatch:
inputs:
version:
description: 'Version tag for the Docker image (optional, will use latest Git tag if empty)'
required: false
type: string
tag_as_latest:
description: 'Also tag as latest?'
required: false
default: false
type: boolean

jobs:
push-docker-image:
runs-on: ubuntu-latest
env:
DOCKER_CLI_EXPERIMENTAL: enabled
steps:
- uses: actions/checkout@v4
- name: Determine tag
id: tag
run: |
if [ -z "${{ github.event.inputs.version }}" ]; then
git fetch --all --tags
TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
else
TAG=${{ github.event.inputs.version }}
fi
echo "VERSION_TAG=$TAG" >> $GITHUB_ENV
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
with:
install: true
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push
run: |
TAGS="ghcr.io/premai-io/prem-app:$VERSION_TAG"
if ${{ github.event.inputs.tag_as_latest }} == 'true'; then
TAGS="$TAGS,ghcr.io/premai-io/prem-app:latest"
fi
docker buildx build --push \
--file Dockerfile \
--tag $TAGS \
--platform linux/arm64,linux/amd64 .
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
name: Release on user input
name: 🚀 Tauri Dekstop App

on:
workflow_dispatch:
inputs:
branchName:
description: 'Branch Name'
description: 'Branch Name you are releasing from'
required: true
version:
description: 'New version'
description: 'Version tag for the Github Release and the .dmg for MacOS'
required: true
release_as_draft:
description: 'Release as Draft'
required: false
default: true
type: boolean

jobs:
publish-tauri:
Expand Down Expand Up @@ -110,7 +115,7 @@ jobs:
tagName: ${{ github.event.inputs.version }}
releaseName: "PremAI App ${{ github.event.inputs.version }}"
releaseBody: "See the assets to download and install this version."
releaseDraft: false
releaseDraft: ${{ github.event.inputs.release_as_draft }}
includeDebug: true
updaterJsonKeepUniversal: true
args: ${{matrix.platform == 'ubuntu-20.04' && '--target x86_64-unknown-linux-gnu' || '--target universal-apple-darwin'}}
Expand Down

0 comments on commit 7dd0916

Please sign in to comment.