fix: dockerfile #641
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" | |
- "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 }} |