chore: Refactor pipeline to allow pattern of specific container images per step
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 19s
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 19s
This commit is contained in:
parent
6c32d1dcf6
commit
3103aa85eb
@ -1,5 +1,4 @@
|
||||
name: Container & Helm chart
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
@ -8,28 +7,27 @@ jobs:
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install semantic release w/ plugins
|
||||
container: library/node:20-slim
|
||||
run: |
|
||||
npm install \
|
||||
semantic-release \
|
||||
@semantic-release/commit-analyzer \
|
||||
@semantic-release/exec \
|
||||
- name: Execute semantic release
|
||||
container: library/node:20-slim
|
||||
run: |
|
||||
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'
|
||||
- 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_APIKEY: ${{ secrets.GIT_APIKEY }}
|
||||
GIT_USERNAME: djpbessems
|
||||
GIT_CREDENTIALS: djpbessems:${{ secrets.GIT_APIKEY }}
|
||||
|
||||
# Foo:
|
||||
|
Loading…
Reference in New Issue
Block a user