You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/.github/workflows/ubuntu_github.yaml

47 lines
908 B
YAML

5 years ago
#
# Author: Hari Sekhon
# Date: Tue Feb 4 09:53:28 2020 +0000
#
5 years ago
# vim:ts=2:sts=2:sw=2:et
5 years ago
#
# https://github.com/HariSekhon/bash-tools
5 years ago
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/HariSekhon
5 years ago
#
3 years ago
---
name: GitHub Actions Ubuntu
5 years ago
on:
5 years ago
push:
branches:
- master
paths-ignore:
3 years ago
- '**/*.md'
workflow_dispatch:
inputs:
debug:
type: boolean
required: false
default: false
5 years ago
schedule:
3 years ago
- cron: '0 7 * * *'
5 years ago
permissions:
contents: read
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
5 years ago
jobs:
build:
if: github.event.repository.fork == false
name: Build
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
with:
caches: apt pip cpanm
debug: ${{ github.event.inputs.debug }}