Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ name: ci-build
on:
push:
branches:
- "**"
- master
- develop
pull_request:
branches:
- master
- develop
- 'feature/**'
workflow_dispatch:

jobs:
build:
Expand Down Expand Up @@ -122,22 +124,22 @@ jobs:
# ---------- Upload artifacts to github ----------
- name: Upload source-pkg artifact to github
if: startsWith(matrix.docker_tag, 'archlinux')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: source-package
path: ${{ env.src_pkg_artifact }}

- name: Upload version-info to github
if: startsWith(matrix.docker_tag, 'archlinux')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version-info
path: |
./version-string
./version-branch

- name: Upload binary package artifact to github
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.docker_tag }}-package
path: ${{ env.dist_pkg_artifact }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: "CodeQL"

on:
push:
branches:
- "**"
pull_request:
branches: [develop, master]
push:
branches: [develop, master]
workflow_dispatch:

jobs:
analyse:
Expand Down
Loading