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: action 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