From d5c886a9f44571b004b7fc61bdc508f9200fa306 Mon Sep 17 00:00:00 2001 From: Jan Wittler Date: Fri, 19 Aug 2022 19:48:29 +0200 Subject: [PATCH] fix incorrect sed argument --- .github/workflows/aggregation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aggregation.yml b/.github/workflows/aggregation.yml index 82cb2ea..ce5f801 100644 --- a/.github/workflows/aggregation.yml +++ b/.github/workflows/aggregation.yml @@ -23,7 +23,7 @@ jobs: - name: Adapt nightly.aggr [Release] if: github.event_name == 'release' run: | - sed -r -i "" "s#https://vitruv-tools.github.io/updatesite/nightly/(.*)\"#https://vitruv-tools.github.io/updatesite/release/\1/${{ github.event.release.tag_name }}\"#g" nightly.aggr + sed -r -i "s#https://vitruv-tools.github.io/updatesite/nightly/(.*)\"#https://vitruv-tools.github.io/updatesite/release/\1/${{ github.event.release.tag_name }}\"#g" nightly.aggr sed -i "s/Vitruv Nightly Update Site/Vitruv Release Update Site/g" nightly.aggr - name: Generate aggregated updatesite run: >