Skip to content

chore: workflow, fix version output by date #12

chore: workflow, fix version output by date

chore: workflow, fix version output by date #12

Workflow file for this run

name: Build Medict Tasks
on:
push:
# tags:
# - v*
branches:
- master
- develop
jobs:
package:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
steps:
- name: Get version tag (unix)
if: matrix.platform != 'windows-2019'
id: version
run: |
export MEDICT_BUILD_VER="v-3.0.1-alpha-"$(date +%Y%m%d%H%M)
echo "::set-output name=tag::${MEDICT_BUILD_VER}"
- name: Inall pnpm
uses: pnpm/action-setup@v2
with:
version: 8.7.4
run_install: false
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Chechout
uses: actions/checkout@v2
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
# linux
- name: Build for linux
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt update && sudo apt install -y libgtk-3-dev libwebkit2gtk-4.0-dev
wails build -f -ldflags "-X main.Version=${{ steps.version.outputs.tag }}"
ls -lh $PWD && ls -lh $PWD/build
tar -C build/bin -zcvf Medict_${{ steps.version.outputs.tag }}_Linux_x86_64.tar.gz Medict
- name: Upload linux tar.gz
if: matrix.platform == 'ubuntu-20.04'
uses: actions/upload-artifact@v2
with:
name: Medict_${{ steps.version.outputs.tag }}_Linux_x86_64.tar.gz
path: Medict_${{ steps.version.outputs.tag }}_Linux_x86_64.tar.gz
# - name: Create linux app image
# if: matrix.platform == 'ubuntu-16.04'
# run: |
# wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
# chmod +x linuxdeploy-x86_64.AppImage
# mogrify -resize 512x512 appicon.png
# ./linuxdeploy*.AppImage --appdir AppDir --executable build/wombat --desktop-file AppImage.desktop --icon-file appicon.png --output appimage
# mv Wombat*.AppImage Wombat_${{ steps.version.outputs.tag }}_Linux_x86_64.AppImage
# - name: Upload linux app image
# if: matrix.platform == 'ubuntu-16.04'
# uses: actions/upload-artifact@v2
# with:
# name: Wombat_${{ steps.version.outputs.tag }}_Linux_x86_64.AppImage
# path: Wombat_${{ steps.version.outputs.tag }}_Linux_x86_64.AppImage