From 45c94a1d395f560c015c6b1a7a3fc3558f7de395 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Tue, 1 Mar 2022 22:18:50 -0500 Subject: Build with GTK3 by default on Linux using new textadept-build:v2.0 Docker image. Build with GTK 2 using new GTK2 flag. --- .github/workflows/release.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to '.github') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ecea38c..26e56752 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,25 +12,13 @@ on: jobs: build: - runs-on: ubuntu-18.04 - container: ghcr.io/orbitalquark/textadept-build:v1.0 + runs-on: ubuntu-20.04 + container: ghcr.io/orbitalquark/textadept-build:v2.0 outputs: version: ${{ steps.build.outputs.version }} steps: - name: Checkout uses: actions/checkout@v2 - - name: Git init if necessary - shell: bash - run: | - # If git version is less than 2.18, a git clone will not be made in this container. In - # that case, make a temporary repository so "make release" can archive the repo's - # contents for release. - if [[ -d .git ]]; then exit 0; fi - git init - git add . - git config --global user.email "none@example.com" - git config --global user.name "none" - git commit -m 'none' - name: Checkout textadept-build dependencies uses: actions/checkout@v2 with: -- cgit v1.2.3