djpbessems
3103aa85eb
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 19s
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
name: Container & Helm chart
|
|
on: [push]
|
|
|
|
jobs:
|
|
Semantic Release (Dry-run):
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Semantic release (dry-run)
|
|
uses: https://github.com/addnab/docker-run-action@v3
|
|
with:
|
|
image: library/node:20-slim
|
|
options: --volumes-from=${{ env.JOB_CONTAINER_NAME }} --rm
|
|
run: |
|
|
npm install \
|
|
semantic-release \
|
|
@semantic-release/commit-analyzer \
|
|
@semantic-release/exec && \
|
|
npx semantic-release \
|
|
--package @semantic-release/exec \
|
|
--package semantic-release \
|
|
--branches ${{ gitea.refname }} \
|
|
--tag-format "v\$${version}" \
|
|
--dry-run \
|
|
--plugins @semantic-release/commit-analyzer,@semantic-release/exec \
|
|
--analyzeCommits @semantic-release/commit-analyzer \
|
|
--verifyRelease @semantic-release/exec \
|
|
--verifyReleaseCmd 'echo "$${nextRelease.version}" > .version'
|
|
env:
|
|
GIT_CREDENTIALS: djpbessems:${{ secrets.GIT_APIKEY }}
|
|
|
|
# Foo:
|