feat: windows path for certs #47
Workflow file for this run
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
name: Build Docker image | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- 'v*' | |
paths: | |
- '.github/workflows/build.yml' | |
- 'wazuh-cert-oauth2/**' | |
- 'wazuh-cert-oauth2-model/**' | |
- 'Dockerfile' | |
env: | |
CARGO_TERM_COLOR: always | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ADORSYS-GIS/wazuh-cert-oauth2 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
# Cache Rust dependencies | |
- name: Cache Rust dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo- | |
- name: Build Server | |
working-directory: wazuh-cert-oauth2 | |
run: cargo build --verbose && cargo test --verbose | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to the Docker registry | |
id: login | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- id: lowercase | |
name: Lowercase image name | |
uses: AsZc/change-string-case-action@v6 | |
with: | |
string: ${{ env.IMAGE_NAME }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ steps.lowercase.outputs.lowercase }} | |
tags: | | |
type=raw,value=latest | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
push: "${{ github.ref == 'refs/heads/main' && 'true' || 'false' }}" | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64 #,linux/arm64,linux/arm/v7 | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Save the updated Docker cache | |
- name: Save Docker cache | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: buildx-cache | |
path: /tmp/.buildx-cache-new |