mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-29 22:13:34 +03:00
fc2e4083b0
* ci: check for change tag * fix workflow * Update .scripts/ci/check-change-tags.js * feat: also check if tag is known seems like covector does not check that so we can do it here for now * remove push run * only check changed files * add missing tag --------- Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.studio>
14 lines
275 B
Bash
Executable File
14 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if git diff --quiet --ignore-submodules HEAD
|
|
then
|
|
echo "working directory is clean"
|
|
else
|
|
echo "found diff"
|
|
exit 1
|
|
fi
|