fix: added tbody to table elements (#254) #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
release_name: ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} | |
steps: | |
- name: Create GitHub release | |
id: release | |
uses: GoogleCloudPlatform/release-please-action@v4 | |
with: | |
token: ${{ secrets.BOT_TOKEN }} | |
# Package-Release: | |
# needs: release-please | |
# runs-on: ubuntu-latest | |
# if: ${{ needs.release-please.outputs.release_created }} | |
# permissions: | |
# packages: write | |
# contents: read | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Set up node 20.x | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: "20.x" | |
# cache: "npm" | |
# - name: Install dependencies | |
# run: npm ci | |
# - name: Build package to dist/ | |
# run: npm run build | |
# - uses: JS-DevTools/npm-publish@v3 | |
# with: | |
# token: ${{ secrets.NPM_TOKEN }} |