build(deps): bump the go group with 12 updates (#1212) #468
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
jobs: | |
build-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout code | |
uses: actions/checkout@v4 | |
- run: | | |
echo "GIT_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- | |
name: Docker meta | |
id: docker_meta | |
uses: docker/metadata-action@v5.5.1 | |
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 | |
uses: docker/setup-buildx-action@v3.6.1 | |
with: | |
install: true | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v3.3.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- | |
name: Login to Docker Container Registry | |
uses: docker/login-action@v3.3.0 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Build and push | |
id: build | |
uses: docker/build-push-action@v6 | |
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 }} | |
platforms: linux/amd64,linux/arm64/v8 | |
build-binary: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GO111MODULE: on | |
steps: | |
- | |
name: Checkout code | |
uses: actions/checkout@v4 | |
- | |
name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- | |
name: Build TUSD | |
run: ./scripts/build_all.sh | |
- | |
name: GitHub Release | |
uses: softprops/action-gh-release@v2.0.8 | |
with: | |
files: tusd_*.* | |
deploy-heroku: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout code | |
uses: actions/checkout@v4 | |
- | |
name: Deploy to heroku | |
uses: akhileshns/heroku-deploy@v3.13.15 | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
heroku_app_name: ${{secrets.HEROKU_APP_NAME}} | |
heroku_email: ${{secrets.HEROKU_USER_EMAIL}} | |
stack: heroku-22 |