|
|
|
|
@ -12,10 +12,10 @@ jobs:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: Setup Go 1.14
|
|
|
|
|
- name: Setup Go 1.x.y
|
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
|
with:
|
|
|
|
|
go-version: 1.14
|
|
|
|
|
go-version: "^1.14.4"
|
|
|
|
|
|
|
|
|
|
- name: Set $GOPATH and more variables
|
|
|
|
|
run: |
|
|
|
|
|
@ -41,8 +41,8 @@ jobs:
|
|
|
|
|
- name: Git push assets to "release" branch
|
|
|
|
|
run: |
|
|
|
|
|
git init
|
|
|
|
|
git config --local user.name "${{ github.actor }}"
|
|
|
|
|
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
|
|
|
|
|
git config --local user.name "actions"
|
|
|
|
|
git config --local user.email "action@github.com"
|
|
|
|
|
git checkout -b release
|
|
|
|
|
git add dlc.dat dlc.dat.sha256sum
|
|
|
|
|
git commit -m "${{ env.RELEASE_NAME }}"
|
|
|
|
|
|