Skip to content

feat: add api endpoints #4

feat: add api endpoints

feat: add api endpoints #4

name: Deploy Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- main
paths:
- apps/api/**
workflow_dispatch:
jobs:
push-app-image:
permissions:
contents: read
packages: write
attestations: write
id-token: write
runs-on: ubuntu-latest
defaults:
run:
working-directory: './apps/api'
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Inventory Image'
run: |
docker build . --tag ghcr.io/revokslab/codecrawl:latest
docker push ghcr.io/revokslab/codecrawl:latest