Automatically publish the latest MultiPaper containers to Docker Hub.

Update auto-check-latest-version.yaml: Use actions/github-commit-push to auto commit

Use actions/github-commit-push to do the auto tag, commit, and push

authored by Akiicat and committed by GitHub dd989bf2 522e495a

Changed files
+4 -4
.github
+4 -4
.github/workflows/auto-check-latest-version.yaml
··· 34 34 echo "SERVER_VERSION: ${{ env.SERVER_VERSION }}" 35 35 36 36 - name: Auto commit to Github 37 - uses: stefanzweifel/git-auto-commit-action@v4 37 + uses: actions-js/push@master 38 38 with: 39 - # repo and workload scopes 40 - tagging_message: "v${{ env.SERVER_VERSION }}" 41 - commit_message: "[AUTO] multipaper server v${{ env.SERVER_VERSION }}" 39 + github_token: ${{ secrets.GITHUB_TOKEN }} 40 + tags: "v${{ env.SERVER_VERSION }}" 41 + message: "[AUTO] multipaper server v${{ env.SERVER_VERSION }}" 42 42