Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Bump bincode from 1.3.3 to 3.0.0 #124

Bump bincode from 1.3.3 to 3.0.0

Bump bincode from 1.3.3 to 3.0.0 #124

Workflow file for this run

name: Server Docker
on:
push:
branches:
- main
paths:
- 'wallguard-server/**'
- 'wallguard-common/**'
pull_request:
branches:
- main
paths:
- 'wallguard-server/**'
- 'wallguard-common/**'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Normalize Organization
run: |
OWNER_LOWER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
echo "OWNER_LOWER=$OWNER_LOWER" >> $GITHUB_ENV
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/${{ env.OWNER_LOWER }}/wallguard-server:latest