Skip to content

Commit

Permalink
chore(release): 1.22.20 [skip ci]
Browse files Browse the repository at this point in the history
## [1.22.20](v1.22.19...v1.22.20) (2024-07-11)

### Bug Fixes

* use downloaded entrypoint, add sqlite-dev dependency ([b8ba38e](b8ba38e))
  • Loading branch information
semantic-release-bot committed Jul 11, 2024
1 parent b8ba38e commit c541ba5
Show file tree
Hide file tree
Showing 12 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion .github/actions/artifact/download/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
path: ${{ inputs.OUTPUT_FOLDER }}

- name: Unpack
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
ARCHIVE_PATH: ${{ inputs.OUTPUT_FOLDER }}/${{ inputs.ARCHIVE_NAME }}
OUTPUT_FOLDER: ${{ inputs.OUTPUT_FOLDER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/artifact/upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
steps:
- name: Archive build
id: archive
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
SOURCE_FOLDER: ${{ inputs.SOURCE_FOLDER }}
ARCHIVE_PATH: ${{ inputs.ARCHIVE_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/dotnet/release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ runs:
using: composite
steps:
- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: ${{ inputs.BUILD_CONFIG }}
SHELL: ${{ inputs.SHELL }}

- name: Publish
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
PROJECT: ${{ inputs.PROJECT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-step-build-and-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Docker Build & Push
id: docker
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].20
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
REGISTRY_USER: ${{ inputs.REGISTRY_USER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-step-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].20
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
PROJECT_NAME: ${{ inputs.PROJECT_NAME }}
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].20
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
PROJECT_NAME: ${{ inputs.PROJECT_NAME }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,20 @@ jobs:

- name: Generate artifact name
id: artifact-name
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
NAME_PREFIX: dotnet-build

- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: "Release"
PROJECT: ${{ inputs.PROJECT }}
OUTPUT_DIRECTORY: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }}

- name: Upload build artifact
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ steps.artifact-name.outputs.ARTIFACT_NAME }}
ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }}
Expand All @@ -98,12 +98,12 @@ jobs:
steps:
- name: Download build artifact
id: output-folder
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
ARTIFACT_NAME: ${{ needs.build.outputs.ARTIFACT_NAME }}

- name: Publish to Azure App Service
uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/[email protected].20
with:
WORKING_DIRECTORY: ${{ steps.output-folder.outputs.OUTPUT_FOLDER }}
BINARIES_DIRECTORY: ''
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-workflow-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,25 @@ jobs:
uses: actions/checkout@v4

- name: Check code formatting
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
CSHARPIER_VERSION: ${{ inputs.CSHARPIER_VERSION }}

- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: "Debug"

- name: Lint
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
if: ${{ inputs.RUN_LINT == 'true' }}
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}

- name: Run tests
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
GENERATE_CODE_COVERAGE: false
10 changes: 5 additions & 5 deletions .github/workflows/node-step-azure-storage-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
steps:
- name: Generate artifact name
id: artifact-name
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
NAME_PREFIX: node-build

Expand All @@ -110,7 +110,7 @@ jobs:
ref: ${{ inputs.CHECKOUT_REF }}

- name: Build
uses: zupit-it/pipeline-templates/.github/actions/node/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/node/[email protected].20
with:
NODE_VERSION: ${{ inputs.NODE_VERSION }}
RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }}
Expand All @@ -120,7 +120,7 @@ jobs:
CHECKOUT_REF: ${{ inputs.CHECKOUT_REF }}

- name: Upload build artifact
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ inputs.DIST_PATH }}
ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }}
Expand All @@ -141,12 +141,12 @@ jobs:
steps:
- name: Download build artifact
id: output-folder
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/artifact/[email protected].20
with:
ARTIFACT_NAME: ${{ needs.build-node-project.outputs.ARTIFACT_NAME }}

- name: Deploy to Azure Storage
uses: zupit-it/pipeline-templates/.github/actions/azure/storage/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/azure/storage/[email protected].20
with:
WORKING_DIRECTORY: ${{ steps.output-folder.outputs.OUTPUT_FOLDER }}
BINARIES_DIRECTORY: ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-step-docker-build-and-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
ref: ${{ inputs.CHECKOUT_REF }}

- name: NodeJS Build
uses: zupit-it/pipeline-templates/.github/actions/node/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/node/[email protected].20
with:
NODE_VERSION: ${{ inputs.NODE_VERSION }}
RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }}
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

- name: Docker Build & Push
id: docker
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/docker/[email protected].20
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
REGISTRY_USER: ${{ inputs.REGISTRY_USER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar-step-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Sonar step analyze with artifacts
id: sonar
uses: zupit-it/pipeline-templates/.github/actions/sonar/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/sonar/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonar-step-dotnet-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
fetch-depth: 0

- name: Install .NET
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
DOTNET_VERSION: ${{ inputs.DOTNET_VERSION }}
Expand Down Expand Up @@ -89,13 +89,13 @@ jobs:
"${params[@]}"
- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: "Debug"

- name: Run tests
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].19
uses: zupit-it/pipeline-templates/.github/actions/dotnet/[email protected].20
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
EXCLUDE_FILES: ${{ inputs.COVERAGE_EXCLUSIONS }}
Expand Down
Loading

0 comments on commit c541ba5

Please sign in to comment.