Skip to content

feat: add html attributes #11

feat: add html attributes

feat: add html attributes #11

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
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 & Push Image'
run: |
docker build . --tag ghcr.io/cosmify-dev/docs:latest
docker push ghcr.io/cosmify-dev/docs:latest