Skip to content

ci: fix build-and-push workflow #1

ci: fix build-and-push workflow

ci: fix build-and-push workflow #1

Workflow file for this run

---
name: 'Release'
on:
push:
branches:
- main
jobs:
release:
name: 'Release'
runs-on: ubuntu-latest
# Skip running release workflow on forks
if: github.repository_owner == 'antmelekhin'
steps:
- name: 'Checkout the codebase'
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: 'Semantic Release'
uses: cycjimmy/semantic-release-action@v3
with:
semantic_version: 19.0.5
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}