Skip to content

fix(deps): update module github.com/zclconf/go-cty to v1.15.0 #132

fix(deps): update module github.com/zclconf/go-cty to v1.15.0

fix(deps): update module github.com/zclconf/go-cty to v1.15.0 #132

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: Docker Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
outputs:
deployImage: ${{ fromJSON(steps.meta.outputs.json).tags[0] }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha,priority=850
type=ref,event=branch
type=ref,event=pr
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cli-binary:
name: CLI
runs-on: ubuntu-latest
permissions:
contents: write
if: github.ref_type == 'tag'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy:
name: Deploy Backend
runs-on: ubuntu-latest
concurrency: deploy-group # ensure only one action runs at a time
needs: build-and-push-image
if: github.ref_type == 'branch' && github.ref_name == 'main'
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/[email protected]
- run: flyctl deploy --image ${{ needs.build-and-push-image.outputs.deployImage }}
env:
FLY_API_TOKEN: ${{ secrets.FLY_DEPLOY_TOKEN }}