Skip to content

Commit

Permalink
fix: release-please-action
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Nov 4, 2024
1 parent 879d5b1 commit 0a0ffd0
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 59 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/release-dockerhub.yml

This file was deleted.

74 changes: 66 additions & 8 deletions .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,74 @@
name: Build and release server
name: Build server for release
on:
release:
types: [ published ]
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
build:
release-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: go
- name: Checkout
if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4
- name: Setup go
if: ${{ steps.release.outputs.release_created }}
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: make -j upload
- name: Download Go modules
if: ${{ steps.release.outputs.release_created }}
run: go mod download
- name: Upload server files
if: ${{ steps.release.outputs.release_created }}
run: make -j upload
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_RELEASE_UPLOAD_URL: ${{ github.event.release.upload_url }}
GITHUB_RELEASE_UPLOAD_URL: ${{ steps.release.outputs.upload_url }}
- name: Docker meta
if: ${{ steps.release.outputs.release_created }}
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_USERNAME }}/plugnmeet-server
tags: |
type=ref,event=tag
type=semver,pattern=${{ steps.release.outputs.tag_name }}
type=semver,pattern=v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
- name: Set up QEMU
if: ${{ steps.release.outputs.release_created }}
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:latest
platforms: all

- name: Set up Docker Buildx
if: ${{ steps.release.outputs.release_created }}
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
if: ${{ steps.release.outputs.release_created }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}

- name: Build and push
if: ${{ steps.release.outputs.release_created }}
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 0a0ffd0

Please sign in to comment.