Regenerate graphql code #26
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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
env: | |
REGISTRY: ghcr.io | |
FRONTEND_REPOSITORY: desislavsd/wireguard-manager | |
IMAGE_NAME: ${{ github.repository }} | |
PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.1 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Discover latest frontend release | |
run: | | |
LATEST_FRONTEND_RELEASE=$(curl -sS "https://api.github.com/repos/${FRONTEND_REPOSITORY}/releases/latest" | jq -r ".tag_name") | |
echo 'latest_frontend_release=${LATEST_FRONTEND_RELEASE}' >> $GITHUB_OUTPUT | |
- uses: actions/checkout@v3 | |
with: | |
repository: ${{ env.FRONTEND_REPOSITORY }} | |
ref: ${{ steps.variables.outputs.latest_frontend_release }} | |
path: pkg/api/internal/tools/frontend/wireguard-manager | |
- name: Setup Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=semver,pattern={{version}} | |
latest | |
labels: | | |
maintainer=UnAfraid | |
org.opencontainers.image.vendor=UnAfraid | |
org.opencontainers.image.documentation=https://github.com/UnAfraid/wg-ui | |
- name: Build Frontend | |
run: | | |
cd pkg/api/internal/tools/frontend/wireguard-manager | |
pnpm install | |
npm run generate | |
rm -rf ../app | |
mv .output/public ../app | |
cd .. | |
rm -rf wireguard-manager | |
- name: Download dependencies | |
run: go mod download | |
- name: GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean --skip-validate | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Build and push image to GHCR | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
platforms: ${{ env.PLATFORMS }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |