Skip to content

feat(build-rust-docker): add command to test image before push #24

feat(build-rust-docker): add command to test image before push

feat(build-rust-docker): add command to test image before push #24

# docs: skip
name: Release workflow repository
on:
push:
branches:
- master
- alpha
- beta
tags-ignore:
- "**"
workflow_dispatch: {}
jobs:
release-workflows:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Install dependencies using yarn
run: yarn install --frozen-lockfile
- name: Release workflows
run: yarn release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}