From 79f1c215eee3ebc0bc8bb0a6c79fe1d70fb65da3 Mon Sep 17 00:00:00 2001 From: Kai Ehrhardt Date: Thu, 12 Oct 2023 22:26:59 +0200 Subject: [PATCH] fix(docs): + triggern new release --- README.md | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 614cb0d..66c7265 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,15 @@ Included actions: ## configuration / inputs -|key|description|default|required| -|-|-|-|-| -|checkout-deploy-key|""|""|no| -|registry|container registry| ghcr.io |yes| -|user|container registry user|${{ github.actor }}|yes| -|token|container registry token|none|yes| -|platforms|container target platforms|linux/amd64,linux/arm/v7,linux/arm64|no| +| key | description | default | required | +| ------------------- | ----------------------------------------------------------------- | ------------------------------------ | -------- | +| context | build's context is the set of files located in the specified path | "." | no | +| file | path to the Dockerfile | ./Dockerfile | no | +| checkout-deploy-key | "" | "" | no | +| registry | container registry | ghcr.io | yes | +| user | container registry user | ${{ github.actor }} | yes | +| token | container registry token | none | yes | +| platforms | container target platforms | linux/amd64,linux/arm/v7,linux/arm64 | no | ## examples @@ -96,11 +98,10 @@ jobs: container: smartive/semantic-release-image:latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ssh-key: "${{ secrets.COMMIT_KEY }}" - - name: install semantic-release/github - run: npm install semantic-release @semantic-release/github - - name: semantic-release - run: semantic-release -``` + - name: Semantic Release + uses: cycjimmy/semantic-release-action@v4 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}