treetrail-frontend/.forgejo/workflows/build.yaml

82 lines
2.3 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
with:
fetch-depth: 0
- 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: Git unshallow - get all history from Git to get the tag for the computation of the version
# if: ${{ inputs.build }}
# run: git pull --unshallow
- name: Get the version from git
id: version
run: echo "version=$(git describe --dirty --tags)" >> $GITHUB_OUTPUT
- name: Check if the container should be built
id: builder
run: echo "run=${{ inputs.build || !contains(steps.version.output.version, '-') }}" >> $GITHUB_OUTPUT
- name: Check
run: echo "Build? ${{ steps.builder.output.run }}"
- name: Build container
if: ${{ steps.builder.output.run }}
uses: actions/buildah-build@v1
with:
image: treetrail-frontend
oci: true
labels: treetrail-frontend
tags: ${{ steps.version.outputs.version }}
containerfiles: |
./Containerfile
- name: Workaround for bug of podman-login
if: ${{ steps.builder.output.run }}
run: |
mkdir -p $HOME/.docker
echo "{ \"auths\": {} }" > $HOME/.docker/config.json
- name: Log in to container registry (with another workaround)
if: ${{ steps.builder.output.run }}
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: ${{ steps.builder.output.run }}
with:
registry: "docker://${{ vars.REGISTRY }}"
image: treetrail-frontend
tags: ${{ steps.version.outputs.version }}