treetrail-frontend/.forgejo/workflows/build.yaml
2024-11-02 18:41:14 +01:00

68 lines
1.8 KiB
YAML

on:
push:
workflow_dispatch:
inputs:
build:
description: "Build container"
required: false
default: false
type: boolean
jobs:
build:
runs-on: container
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build package (transpile ts => js)
run: ng build
- name: Get the version from git
id: version
if: ${{ inputs.build }}
run: echo "version=$(git describe --dirty --tags)" >> $GITHUB_OUTPUT
- name: Build container
if: ${{ inputs.build }}
uses: actions/buildah-build@v1
with:
image: treetrail-frontend
tags: ${{ steps.version.outputs.version }}
containerfiles: |
./Containerfile
- name: Workaround for bug of podman-login
if: ${{ inputs.build }}
run: |
mkdir -p $HOME/.docker
echo "{ \"auths\": {} }" > $HOME/.docker/config.json
- name: Log in to container registry (with another workaround)
if: ${{ inputs.build }}
uses: actions/podman-login@v1
with:
registry: ${{ vars.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
auth_file_path: /tmp/auth.json
- uses: actions/push-to-registry@v2
if: ${{ inputs.build }}
with:
registry: "docker://${{ vars.REGISTRY }}"
image: treetrail-frontend
tags: ${{ steps.version.outputs.version }}