Run and trigger the workflow #79
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: Run and trigger the workflow | |
on: | |
schedule: | |
- cron: 0 1 * * * | |
workflow_dispatch: | |
jobs: | |
build: | |
permissions: | |
issues: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Generate latest release information | |
run: | | |
# Run the docker-compose command | |
docker-compose -f deployments/docker-compose.yaml up | |
exit ${?} | |
shell: bash | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |