Skip to content

Commit

Permalink
Changed workflow to only build release on push to main to avoid close…
Browse files Browse the repository at this point in the history
…d but not merged prs from triggering a release
  • Loading branch information
r-caamano committed May 14, 2024
1 parent c87d3d7 commit 37538de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
name: release

on:
pull_request:
types: [closed]

push:
branches:
- main
env:
APP_NAME: 'zfw'
MAINTAINER: 'Robert Caamano'
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---
# [0.6.0] - 2024-05-09
# [0.6.1] - 2024-05-14

###

- Added support for ziti service id tracking. Will need to update ziti-router via pr.
- Fixed issue where passthrough rules would not generate log data when in verbose mode.
- Fixed release workflow where if a non merged pull request was closed it would trigger a release
build action.

# [0.5.18] - 2024-05-08

Expand Down
2 changes: 1 addition & 1 deletion src/zfw.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ char *service_string;
char *log_file_name;
char *object_file;
char *direction_string;
const char *argp_program_version = "0.6.0";
const char *argp_program_version = "0.6.1";
struct ring_buffer *ring_buffer;

__u32 if_list[MAX_IF_LIST_ENTRIES];
Expand Down

0 comments on commit 37538de

Please sign in to comment.