switch default branch

This commit is contained in:
gempir 2022-02-26 13:57:27 +01:00
parent 7832d9887c
commit 5708d2cad9
2 changed files with 6 additions and 6 deletions

View File

@ -2,9 +2,9 @@ name: ci
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
@ -34,7 +34,7 @@ jobs:
run: go test -v .
release:
if: ${{ github.ref == 'refs/heads/master' }}
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: build
steps:

View File

@ -2,9 +2,9 @@ name: Docker
on:
push:
# Publish `master` as Docker `latest` image.
# Publish `main` as Docker `latest` image.
branches:
- master
- main
# Publish `v1.2.3` tags as releases.
tags:
@ -68,7 +68,7 @@ jobs:
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
[ "$VERSION" == "main" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION