Skip to content

release dox-query-builder v2.1.0 (#107) #36

release dox-query-builder v2.1.0 (#107)

release dox-query-builder v2.1.0 (#107) #36

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency:
group: "publish"
cancel-in-progress: true
jobs:
publish:
if: |
startsWith(github.event.head_commit.message, 'release')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Set dart credentials
run: |
mkdir "$XDG_CONFIG_HOME/dart"
echo '${{ secrets.PUB_CREDENTIALS }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
- name: Prepare git
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Activate melos
run: dart pub global activate melos
- name: Publish package
run: melos publish --no-dry-run --git-tag-version --yes
- name: Create tags
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PUSH_TO_PROTECTED_BRANCH }}
tags: true
branch: main