Add audit subcommand for user logs #355
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: Nightly | ||
on: | ||
schedule: | ||
- cron: '0 0 3 ? * SUN *' # At 03:00:00am, on every Sunday, every month. Not enough churn to turn nightlies on. | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Lookup or create release | ||
uses: EventStore/Automations/lookup-or-create-release@master | ||
id: release | ||
with: | ||
build-type: nightly | ||
github-token: ${{ secrets.GH_PAT }} |