mirror of
https://github.com/yquake2/ctf.git
synced 2025-04-19 17:01:13 +00:00
Rename the Linux/x86_64 workflow file.
This is a preparation of an upcoming Linux/aarch64 build. While here switch back to Ubuntu 22.04 as builder, we should use the same Ubuntu version everywhere.
This commit is contained in:
parent
787de54da5
commit
b9cac9410e
1 changed files with 9 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
name: Testbuild for Linux
|
||||
run-name: testbuild_linux
|
||||
name: Testbuild for Linux (x86_64)
|
||||
run-name: testbuild_linux_x86_64
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
|
@ -14,8 +14,8 @@ concurrency:
|
|||
group: ${{github.workflow}}-${{github.event_name == 'pull_request' && github.head_ref || github.sha}}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build_ubuntu_x64_64:
|
||||
runs-on: ubuntu-latest
|
||||
build_ubuntu_x86_64:
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -31,15 +31,15 @@ jobs:
|
|||
- name: Create testbuild package
|
||||
run: |
|
||||
# Create release directory tree
|
||||
mkdir -p publish/quake2-ctf-linux-${{github.sha}}/misc/docs
|
||||
mkdir -p publish/quake2-ctf-linux_x86_64-${{github.sha}}/misc/docs
|
||||
# Copy release assets
|
||||
cp -r release/* publish/quake2-ctf-linux-${{github.sha}}/
|
||||
cp -r release/* publish/quake2-ctf-linux_x86_64-${{github.sha}}/
|
||||
# Copy misc assets
|
||||
cp LICENSE publish/quake2-ctf-linux-${{github.sha}}/misc/docs/LICENSE.txt
|
||||
cp README.md publish/quake2-ctf-linux-${{github.sha}}/misc/docs/README.txt
|
||||
cp LICENSE publish/quake2-ctf-linux_x86_64-${{github.sha}}/misc/docs/LICENSE.txt
|
||||
cp README.md publish/quake2-ctf-linux_x86_64-${{github.sha}}/misc/docs/README.txt
|
||||
- name: Upload testbuild package
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: quake2-ctf-linux-${{github.sha}}
|
||||
name: quake2-ctf-linux_x86_64-${{github.sha}}
|
||||
path: publish/
|
||||
if-no-files-found: error
|
Loading…
Reference in a new issue