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