From 1d9e0f51d01d8006c706eca15e42d2886ba8ce5c Mon Sep 17 00:00:00 2001 From: Harley Date: Mon, 14 Aug 2023 18:09:12 +0100 Subject: [PATCH] [exclc] Use write property file action that works --- .github/workflows/auto-update.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index b762e7a9e..04d6f6c30 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -15,14 +15,11 @@ jobs: steps: - uses: actions/checkout@v3 - name: Write new version to gradle.properties file - uses: anbazhagan45/copy-update-file@1.0.0 + uses: Stuie/write-properties-file@1.0.1 with: - source_path: './gradle.properties' - target_path: './gradle.properties' - properties: | - modVersion - values: | - ${{ github.ref_name }} + path: './gradle.properties' + property: 'modVersion' + value: ${{ github.ref_name }} - name: Commit gradle properties run: | git config --global user.name 'Publish Action'