From 096274f971b1a06fd567a3f5b054c158eb297787 Mon Sep 17 00:00:00 2001 From: ben lang <9093983+bl3rune@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:02:32 +0100 Subject: [PATCH] fix workflow --- .github/pull_request_template.md | 1 + .github/workflows/publish.yml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..14d5dfb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1 @@ +### Change Description ### \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fbd7197..13b077a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,13 +11,13 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - run: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - - run: git config user.name "$GITHUB_ACTOR" + - run: git config user.email "bl3rune@users.noreply.github.com" + - run: git config user.name "bl3rune" - run: npm version patch -m "v%s" - run: VERSION=$(node -p "require('./package.json').version") - run: git tag ${VERSION} - - run: git push "https://$GITHUB_ACTOR:${{ secrets.ACCESS_TOKEN }}@github.com/$GITHUB_REPOSITORY.git" --follow-tags - - run: git push "https://$GITHUB_ACTOR:${{ secrets.ACCESS_TOKEN }}@github.com/$GITHUB_REPOSITORY.git" --tags + - run: git push "https://bl3rune:${{ secrets.ACCESS_TOKEN }}@github.com/$GITHUB_REPOSITORY.git" --follow-tags + - run: git push "https://bl3rune:${{ secrets.ACCESS_TOKEN }}@github.com/$GITHUB_REPOSITORY.git" --tags - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx