From 305816b51fe553d2d8841ea2fbdbb389a6cbbe8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Cora=C3=A7=C3=A3o?= Date: Mon, 2 Dec 2024 23:06:10 +0000 Subject: [PATCH] Update create-config-zip.yml --- .github/workflows/create-config-zip.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/create-config-zip.yml b/.github/workflows/create-config-zip.yml index 76e888e82..637ddd5aa 100644 --- a/.github/workflows/create-config-zip.yml +++ b/.github/workflows/create-config-zip.yml @@ -12,6 +12,8 @@ jobs: steps: - uses: actions/checkout@v3 - run: zip -r config-default.zip config/_default + - uses: actions-ecosystem/action-get-latest-tag@v1 + id: get-latest-tag - uses: actions/upload-artifact@v3 with: name: config-default @@ -20,3 +22,4 @@ jobs: uses: softprops/action-gh-release@v1 with: files: config-default.zip + tag: ${{ steps.get-latest-tag.outputs.tag }}