Update github actions to use v4 instead of v3 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package Debian | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '**' # triggers on ANY tag including hierarchical ones like stable/v2 | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Prerequisites | |
run: | | |
sudo apt update | |
sudo apt install -qqy debhelper cmake libboost-dev libboost-filesystem-dev libsqlite3-dev libgtest-dev | |
- uses: actions/checkout@v4 | |
- uses: jtdor/build-deb-action@v1 | |
id: package | |
with: | |
buildpackage-opts: --build=binary --no-sign | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: debian/artifacts/ |