-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [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
1 parent
b8ba38e
commit c541ba5
Showing
12 changed files
with
69 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
@@ -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: '' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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 }} | ||
|
@@ -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 }} | ||
|
@@ -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: '' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
@@ -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 }} | ||
|
Oops, something went wrong.