From af9c0455c71a902dbe607932961ae1cb0b3af97e Mon Sep 17 00:00:00 2001 From: neuecc Date: Mon, 17 Apr 2023 20:30:24 +0900 Subject: [PATCH] CI again again again --- .github/workflows/build-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 056b45b..faf5917 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -18,7 +18,10 @@ jobs: - uses: actions/checkout@v3 - run: cargo build --verbose - run: cargo test update_package_version -- ${{ inputs.tag }} --nocapture - - run: git commit -m "Update cargo.toml version to ${{ env.GIT_TAG }}" -a + - run: | + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git commit -m "Update cargo.toml version to ${{ env.GIT_TAG }}" -a - run: cargo publish --manifest-path csbindgen/Cargo.toml env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}