treetrail-frontend/.forgejo/workflows/build.yaml
2024-10-25 13:55:33 +02:00

39 lines
858 B
YAML

on:
push:
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: Build container
uses: actions/buildah-build@v1
with:
image: treetrail-frontend
#tags: foo # v1 ${{ github.sha }}
containerfiles: |
./Containerfile
- uses: actions/push-to-registry@v2
with:
registry: "docker://${{ vars.REPOSITORY }}"
image: treetrail-frontend
tags: latest