From 20b336974c3e54687157f12ac75cc7529378c083 Mon Sep 17 00:00:00 2001 From: Jonas Embach Date: Tue, 5 Jul 2022 11:07:02 +0200 Subject: [PATCH] ci: discard unstaged changes before git pull --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a28ab07..2f07f34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,9 @@ jobs: LOG_LEVEL: debug - name: Fetch latest version - run: git pull + run: | + git restore . + git pull - name: Semantic release run: ./node_modules/.bin/turbo run release --filter="!@makaira/storefront-types" --concurrency=1 --continue=false