Skip to content

build(deps): bump golang.org/x/image from 0.13.0 to 0.18.0 (#2017) #1625

build(deps): bump golang.org/x/image from 0.13.0 to 0.18.0 (#2017)

build(deps): bump golang.org/x/image from 0.13.0 to 0.18.0 (#2017) #1625

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
env:
GO_VERSION: 1.18
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go Environment
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: '~> v1'
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}