74 lines
2 KiB
YAML
74 lines
2 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: 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
|
|
if: ${{ inputs.build }}
|
|
id: version
|
|
run: echo "version=$(git describe --dirty --tags)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build container
|
|
if: ${{ inputs.build }}
|
|
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: ${{ 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 }}
|