61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
on: [push, pull_request, create]
|
|
|
|
name: Test
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.12.x, 1.13.x]
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Matrix Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Test code
|
|
env:
|
|
GO111MODULE: on
|
|
run: |
|
|
go test ./pkg/...
|
|
go vet ./pkg/...
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')
|
|
steps:
|
|
- name: Install Go 1.13.1
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.13.1'
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Build TUSD
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
GO111MODULE: on
|
|
run: ./scripts/build_all.sh
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: tusd_*.*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}
|
|
- name: Deploy to heroku
|
|
uses: akhileshns/heroku-deploy@v3.4.6
|
|
with:
|
|
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
|
|
heroku_app_name: ${{secrets.HEROKU_APP_NAME}}
|
|
heroku_email: ${{secrets.HEROKU_USER_EMAIL}}
|
|
- uses: azure/docker-login@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Build and push docker image
|
|
run: |
|
|
docker build -t tusproject/tusd:$GITHUB_SHA .
|
|
docker push tusproject/tusd:$GITHUB_SHA
|