diff options
author | Minetest-j45 <j45minetest@gmail.com> | 2022-09-24 12:35:34 +0100 |
---|---|---|
committer | Minetest-j45 <j45minetest@gmail.com> | 2022-09-24 12:35:34 +0100 |
commit | f41832e1d23b1abe012db0daa38758ea296eab5f (patch) | |
tree | 703b75425b71b89e9c0c6838d98a69e28eb33d13 /.github | |
parent | f7afe26bc74c88a7f89e7784aa5facc5b6200cb3 (diff) |
Fix upgrade_proxy.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/upgrade_proxy.yml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/.github/workflows/upgrade_proxy.yml b/.github/workflows/upgrade_proxy.yml index e187f5c..ccd16dd 100644 --- a/.github/workflows/upgrade_proxy.yml +++ b/.github/workflows/upgrade_proxy.yml @@ -16,11 +16,15 @@ jobs: with: go-version: 1.18 - - name: Upgrade - run: go get -u github.com/HimbeerserverDE/mt-multiserver-proxy + - name: Upgrade and tidy + run: | + go get -u github.com/HimbeerserverDE/mt-multiserver-proxy + go mod tidy - - uses: evantorrie/mott-the-tidier@v1-beta - with: - gomods: | - **/go.mod - -tools/go.mod + - name: Add, commit and push + run: | + git config user.name github-actions + git config user.email github-actions@github.com + git add go.mod go.sum + git commit -m "Upgrade proxy" + git push |