Skip to content

Commit

Permalink
chore(release): 1.18.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.18.0](v1.17.0...v1.18.0) (2024-04-02)

### Features

* **ZCH-61:** docker compose deploy ([#85](#85)) ([69a29b2](69a29b2))
  • Loading branch information
semantic-release-bot committed Apr 2, 2024
1 parent 69a29b2 commit dcc054e
Show file tree
Hide file tree
Showing 10 changed files with 66 additions and 66 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/extract-archive@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.18.0
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/create-archive@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.18.0
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/build@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: ${{ inputs.BUILD_CONFIG }}
SHELL: ${{ inputs.SHELL }}

- name: Publish
uses: zupit-it/pipeline-templates/.github/actions/dotnet/publish@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/publish@v1.18.0
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 @@ -67,7 +67,7 @@ jobs:

- name: Docker Build & Push
id: docker
uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.18.0
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
REGISTRY_USER: ${{ inputs.REGISTRY_USER }}
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 @@ -70,20 +70,20 @@ jobs:

- name: Generate artifact name
id: artifact-name
uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.18.0
with:
NAME_PREFIX: dotnet-build

- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.18.0
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/upload@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.18.0
with:
SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ steps.artifact-name.outputs.ARTIFACT_NAME }}
ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }}
Expand All @@ -101,12 +101,12 @@ jobs:
steps:
- name: Download build artifact
id: output-folder
uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.18.0
with:
ARTIFACT_NAME: ${{ needs.build.outputs.ARTIFACT_NAME }}

- name: Publish to Azure App Service
uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.18.0
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@v3

- name: Check code formatting
uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
CSHARPIER_VERSION: ${{ inputs.CSHARPIER_VERSION }}

- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: "Debug"

- name: Lint
uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.18.0
if: ${{ inputs.RUN_LINT == 'true' }}
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}

- name: Run tests
uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.18.0
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/generate-name@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.18.0
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/build@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.18.0
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/upload@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.18.0
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/download@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.18.0
with:
ARTIFACT_NAME: ${{ needs.build-node-project.outputs.ARTIFACT_NAME }}

- name: Deploy to Azure Storage
uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.18.0
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/build@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.18.0
with:
NODE_VERSION: ${{ inputs.NODE_VERSION }}
RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Docker Build & Push
id: docker
uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.18.0
with:
REGISTRY_URL: ${{ inputs.REGISTRY_URL }}
REGISTRY_USER: ${{ inputs.REGISTRY_USER }}
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 @@ -64,7 +64,7 @@ jobs:
fetch-depth: 0

- name: Install .NET
uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
DOTNET_VERSION: ${{ inputs.DOTNET_VERSION }}
Expand Down Expand Up @@ -92,13 +92,13 @@ jobs:
"${params[@]}"
- name: Build
uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
BUILD_CONFIG: "Debug"

- name: Run tests
uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.17.0
uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.18.0
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
EXCLUDE_FILES: ${{ inputs.COVERAGE_EXCLUSIONS }}
Loading

0 comments on commit dcc054e

Please sign in to comment.