Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaked1 committed Jun 2, 2024
1 parent 4ebbfd5 commit 8ad3c51
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
workflow_dispatch:
inputs:
tag:
description: The tag to be released, e.g. v0.1.0
required: true
pull_request:

jobs:
release:
name: Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
wireshark_vesion: [wireshark-4.2.5]
include:
# Ubuntu 22.04 Wireshark version
- os: ubuntu-22.04
wireshark_version: wireshark-3.6.2

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies (Ubuntu)
if: matrix.os == 'ubuntu-22.04'
run: apt update && apt install -y git cmake ninja-build

0 comments on commit 8ad3c51

Please sign in to comment.