Skip to content

fix: dockerfile

fix: dockerfile #641

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
- "beta"
workflow_dispatch:
env:
HUSKY: 0
CI: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Latest Corepack
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After : corepack version => $(corepack --version)"
corepack enable
yarn --version
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@codedependant/semantic-release-docker
env:
GITHUB_TOKEN: ${{ github.token }}