Skip to content

Commit

Permalink
Modify trigger event in GitHub workflow
Browse files Browse the repository at this point in the history
The trigger event in the GitHub workflow file "publish-snapshot.yml" was changed from a push event on the master branch to any push event. This will allow the workflow to run under broader circumstances, improving responsiveness and frequency of deployments.
  • Loading branch information
lamba92 committed Jan 22, 2024
1 parent 78179aa commit 680e24e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Publish snapshot to TBE

on:
push:
branches: [ master ]
on: [ push ]

jobs:
publish:
Expand Down

0 comments on commit 680e24e

Please sign in to comment.