mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 21:01:50 +03:00
25 lines
784 B
YAML
25 lines
784 B
YAML
name: Setup Version
|
|
description: 'Setup Version'
|
|
outputs:
|
|
APP_VERSION:
|
|
description: 'App Version'
|
|
value: ${{ steps.version.outputs.APP_VERSION }}
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: 'Write Version'
|
|
id: version
|
|
shell: bash
|
|
run: |
|
|
if [ "${{ github.ref_type }}" == "tag" ]; then
|
|
APP_VERSION=$(echo "${{ github.ref_name }}" | sed 's/^v//')
|
|
else
|
|
PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
|
TIME_VERSION=$(date +%Y%m%d%H%M)
|
|
GIT_SHORT_HASH=$(git rev-parse --short HEAD)
|
|
APP_VERSION=$PACKAGE_VERSION-nightly-$GIT_SHORT_HASH
|
|
fi
|
|
echo $APP_VERSION
|
|
echo "APP_VERSION=$APP_VERSION" >> "$GITHUB_OUTPUT"
|
|
./scripts/set-version.sh $APP_VERSION
|