Docker_with_LS_Modules #611
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: Docker_with_LS_Modules | |
on: | |
schedule: | |
- cron: '0 4 * * *' # at the end of every day | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
cancel: | |
name: Cancel Previous Runs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_CI: true | |
TOKEN: ${{ secrets.DOCKERHUB }} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # fetch the whole history | |
- name: Docker | |
run: ./.ci/docker_with_linux_setup_modules.sh |