Skip to content

Updated version to 3.0 #14

Updated version to 3.0

Updated version to 3.0 #14

Workflow file for this run

name: Build Ubuntu Installer
on:
push:
branches:
- release
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Get Version
id: extract_version_linux
run: |
version=$(cat installers/version.txt)
echo "VERSION=$version" >> $GITHUB_ENV
echo "Installer version: $version"
- name: Build Linux Installer
run: |
cd installers
bash create_ubuntu_installer.sh
- name: Upload Linux Installer
uses: actions/upload-artifact@v4
with:
name: linux-installer
path: installers/nortantis_${{ env.VERSION }}_amd64.deb