[event] push to {dev}: Merge pull request #404 from steilerDev/dependabot/npm_and_yarn/dot-github/actions/helper/prepare-semantic-release/dev/semantic-release-7151281fb3 chore: [semantic-release] bump the semantic-release group in /.github/actions/helper/prepare-semantic-release with 4 updates #144
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: '[event] push' | |
run-name: '[event] push to {${{ github.ref_name }}}: ${{ github.event.head_commit.message }}' | |
# Upon receiving a push, this workflow will deploy to the appropriate channels | |
on: | |
push: | |
branches: # Run on every push to dev | |
- 'dev' | |
- 'beta' | |
- 'main' | |
tags-ignore: | |
- '**' | |
jobs: | |
ci: | |
name: ci | |
uses: ./.github/workflows/artifacts_build-release.yml | |
with: | |
all-artifacts: ${{ github.ref_name == 'main' }} # Build and release all artifacts only on main branch | |
release: true | |
secrets: | |
docker-token: ${{ secrets.DOCKER_TOKEN }} | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
bt-token: ${{ secrets.BT_TOKEN }} |