mirror of
https://github.com/nextcloud/docker.git
synced 2025-02-01 17:38:25 +01:00
baebdfefd9
* Test build images using github actions Signed-off-by: Tilo Spannagel <development@tilosp.de> * Check for Changes by update.sh using github actions Signed-off-by: Tilo Spannagel <development@tilosp.de> * Remove travis.yml Signed-off-by: Tilo Spannagel <development@tilosp.de>
22 lines
405 B
YAML
22 lines
405 B
YAML
name: update.sh
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
defaults:
|
|
run:
|
|
shell: 'bash -Eeuo pipefail -x {0}'
|
|
|
|
jobs:
|
|
|
|
check-changes:
|
|
name: Check for Changes
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check for Changes
|
|
run: |
|
|
hash_before="$(git write-tree)"
|
|
./update.sh
|
|
git add -A
|
|
[[ "$hash_before" = "$(git write-tree)" ]]
|