Skip to content

use GOTIFY

use GOTIFY #7

Workflow file for this run

name: ArmIT
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install --frozen-lockfile
- run: npm run build
docker:
name: Build docker container
permissions:
packages: write
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image (and push on main)
uses: docker/[email protected]
with:
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/cthit/armit:latest