build(deps): Bump github.com/syncthing/syncthing from 1.27.10 to 1.27.12 #17
Workflow file for this run
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: Build and Publish | |
on: | |
push: | |
permissions: | |
packages: write | |
contents: write | |
jobs: | |
build-and-push-docker-image: | |
name: Build Docker image and push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 'stable' | |
- uses: go-semantic-release/action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup ko | |
uses: ko-build/[email protected] | |
- name: Login to Github Packages | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build containers | |
run: | | |
git fetch --tags | |
descr=$(git describe --tags) | |
short=$(git describe --tags --abbrev=0) | |
export version="${descr#v}" | |
if [[ $descr == $short ]]; then | |
minor="${version%.*}" | |
major="${version%%.*}" | |
ko build --bare --sbom=none -t edge -t latest -t "$version" -t "$minor" -t "$major" ./cmd/syncthing-configd | |
else | |
ko build --bare --sbom=none -t edge ./cmd/syncthing-configd | |
fi | |
env: | |
KO_DOCKER_REPO: ghcr.io/kastelo/syncthing-configd |