Skip to content

fix: release workflow is not working #15

fix: release workflow is not working

fix: release workflow is not working #15

Workflow file for this run

name: release
on:
push:
tags: ['v*.*.*']
branches:
- fix-release-workflow-swc-error
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
default: 'v0.0.0'
permissions:
contents: write
packages: write
issues: write
jobs:
# goreleaser:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - run: git fetch --force --tags
# - uses: actions/setup-go@v5
# with:
# go-version: '1.23'
# - uses: goreleaser/goreleaser-action@v5
# with:
# distribution: goreleaser
# version: latest
# args: release --clean
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
containerize:
runs-on: ubuntu-latest
# needs: goreleaser
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: rbac-wizard
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=schedule
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha,prefix=
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.rbac-wizard.outputs.tags }}
labels: ${{ steps.rbac-wizard.outputs.labels }}