2021-10-19 16:17:21 +00:00
|
|
|
name: release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout code
|
2022-03-14 13:06:52 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-10-19 16:17:21 +00:00
|
|
|
|
|
|
|
- run: |
|
|
|
|
echo "GIT_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
id: docker_meta
|
2022-05-03 07:53:23 +00:00
|
|
|
uses: docker/metadata-action@v3.8.0
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
ghcr.io/tus/tusd
|
|
|
|
tusproject/tusd
|
|
|
|
tags: |
|
|
|
|
type=sha
|
|
|
|
type=semver,pattern=v{{version}}
|
|
|
|
type=semver,pattern=v{{major}}.{{minor}}
|
|
|
|
type=semver,pattern=v{{major}}
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2022-05-03 07:53:09 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.7.0
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
install: true
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Login to GitHub Container Registry
|
2022-03-14 13:04:57 +00:00
|
|
|
uses: docker/login-action@v1.14.1
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ github.token }}
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Login to Docker Container Registry
|
2022-03-14 13:04:57 +00:00
|
|
|
uses: docker/login-action@v1.14.1
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha
|
|
|
|
build-args: |
|
|
|
|
GIT_VERSION=${{ env.GIT_VERSION }}
|
|
|
|
GIT_COMMIT=${{ github.sha }}
|
|
|
|
|
|
|
|
build-binary:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout code
|
2022-03-14 13:06:52 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-10-19 16:17:21 +00:00
|
|
|
|
|
|
|
-
|
|
|
|
name: Install Go 1.17.2
|
2022-03-14 13:05:09 +00:00
|
|
|
uses: actions/setup-go@v3
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
go-version: '1.17.2'
|
|
|
|
|
|
|
|
-
|
|
|
|
name: Build TUSD
|
|
|
|
run: ./scripts/build_all.sh
|
|
|
|
|
|
|
|
-
|
|
|
|
name: GitHub Release
|
2021-12-13 10:49:51 +00:00
|
|
|
uses: softprops/action-gh-release@v0.1.14
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
files: tusd_*.*
|
|
|
|
|
|
|
|
deploy-heroku:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout code
|
2022-03-14 13:06:52 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-10-19 16:17:21 +00:00
|
|
|
|
|
|
|
-
|
|
|
|
name: Deploy to heroku
|
2021-10-20 14:00:49 +00:00
|
|
|
uses: akhileshns/heroku-deploy@v3.12.12
|
2021-10-19 16:17:21 +00:00
|
|
|
with:
|
|
|
|
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
|
|
|
|
heroku_app_name: ${{secrets.HEROKU_APP_NAME}}
|
|
|
|
heroku_email: ${{secrets.HEROKU_USER_EMAIL}}
|