chore: Convert pipeline from droneci to gitea actions #1
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 32s
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Failing after 32s
This commit is contained in:
parent
b7afe0a358
commit
239a4a8485
@ -6,14 +6,28 @@ jobs:
|
|||||||
Semantic Release (Dry-run):
|
Semantic Release (Dry-run):
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
||||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
||||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
- name: Setup node
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
uses: actions/setup-node@v3
|
||||||
- name: List files in the repository
|
with:
|
||||||
run: |
|
node-version: "lts/*"
|
||||||
ls ${{ gitea.workspace }}
|
- run: |
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
npm clean-install \
|
||||||
|
semantic-release \
|
||||||
|
@semantic-release/commit-analyzer \
|
||||||
|
@semantic-release/exec \
|
||||||
|
- run: |
|
||||||
|
npx semantic-release \
|
||||||
|
--package @semantic-release/exec \
|
||||||
|
--package semantic-release \
|
||||||
|
--branches ${DRONE_BRANCH} \
|
||||||
|
--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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user