Преглед на файлове

CI: Set git author / email before bump (#46)

#### Problem

cargo-release requires git identification to be set, even if it won't be
used.

#### Summary of changes

Set the name and email.
Jon C преди 8 месеца
родител
ревизия
eaef45ac07
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      .github/workflows/publish-rust.yml

+ 5 - 0
.github/workflows/publish-rust.yml

@@ -89,6 +89,11 @@ jobs:
         with:
           tool: cargo-semver-checks,cargo-release
 
+      - name: Set Git Author (required for cargo-release)
+        run: |
+          git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
+          git config --global user.name "github-actions[bot]"
+
       - name: Set Version
         run: |
           if [ "${{ inputs.level }}" == "version" ]; then