This commit is contained in:
parent
0d4a4945fe
commit
a7cda5b70f
@ -1,9 +1,11 @@
|
||||
name: Archlinux build
|
||||
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
|
||||
on: [none]
|
||||
on: [push]
|
||||
jobs:
|
||||
if: ${{ env.GITHUB_REF == '/refs/heads/master' }}
|
||||
build:
|
||||
runs-on: arch-latest
|
||||
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
|
||||
branches:
|
||||
- 'master'
|
||||
- 'zx'
|
||||
|
@ -25,6 +25,9 @@ jobs:
|
||||
apt install -y tcl
|
||||
- name: Cloning source
|
||||
uses: actions/checkout@v4
|
||||
- name: Getting version info
|
||||
run: |
|
||||
echo "BFORCE_VER=$(echo -n ${{ env.GITHUB_WORKSPACE }}/source/.version)" >> $GITHUB_ENV
|
||||
- name: Building package
|
||||
continue-on-error: false
|
||||
run: |
|
||||
@ -42,6 +45,6 @@ jobs:
|
||||
- name: Try to upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bforce
|
||||
name: bforce-${{ env.BFORCE_VER }}
|
||||
path: ${{ env.GITHUB_WORKSPACE }}/artifacts/bforce*.deb
|
||||
- run: echo "This job's over"
|
||||
|
@ -1 +1 @@
|
||||
0.26
|
||||
0.26.1
|
||||
|
@ -536,7 +536,7 @@ defalt:
|
||||
if ( ! resflg )
|
||||
{
|
||||
|
||||
char *p = strcasestr(pbuf, target);
|
||||
char *p = string_casestr(pbuf, target);
|
||||
|
||||
if ( p )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user