From 0de2b32bd2ba7c222b7c259f8f8cf4d0cb618e81 Mon Sep 17 00:00:00 2001 From: Kieren Evans Date: Wed, 21 Feb 2024 17:04:13 +0200 Subject: [PATCH] Fix release phar workflow (#166) ubuntu-18.04 no longer has any workers in github it seems. --- .github/workflows/release-phar.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-phar.yml b/.github/workflows/release-phar.yml index 5e4c3255..e917f3c5 100644 --- a/.github/workflows/release-phar.yml +++ b/.github/workflows/release-phar.yml @@ -8,7 +8,7 @@ name: Attach PHAR to release jobs: build: name: Compile and upload Phar - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 @@ -32,7 +32,7 @@ jobs: - name: Rename PHAR run: mv ws.phar ws - + - name: Generate sha256sum run: sha256sum ws > ws.sha256sum