name: ci on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: ^1.13 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Get dependencies run: | go get -v -t -d ./... - name: Build run: go build -v . - name: Test run: go test -v . release: if: ${{ github.ref == 'refs/heads/master' }} runs-on: ubuntu-latest needs: build steps: - name: trigger update run: | curl -H "x-auth: ${{ secrets.UPDATE_KEY }}" ${{ secrets.UPDATE_URL }} - name: announce update run: | echo -en "PASS ${{ secrets.TMI_TOKEN }}\r\nNICK gempbot\r\nPRIVMSG #pajlada :nymnLander ${{ github.event.head_commit.message }} https://github.com/gempir/justlog/commit/${{ github.sha }} | justlog update\r\n" | openssl s_client -connect irc.chat.twitch.tv:6697