Merge pull request #30 from frontegg/FR-18385-add-audits-and-applicat… #21
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: Main Pipeline | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
env: | |
CI: true | |
jobs: | |
release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codes | |
uses: actions/checkout@v3 | |
- name: Create Release | |
uses: ./.github/actions/release | |
with: | |
GH_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_USERNAME: ${{ secrets.GH_USERNAME }} |