Skip to content

Bump werkzeug from 3.0.3 to 3.0.6 in /azure/app-service #12

Bump werkzeug from 3.0.3 to 3.0.6 in /azure/app-service

Bump werkzeug from 3.0.3 to 3.0.6 in /azure/app-service #12

Workflow file for this run

name: Build ssh-jump-server
on: [push]
jobs:
pipeline:
name: Pipeline
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Tags # To have versioned TAG add: ,${DOCKER_IMAGE}:${{ github.sha }}
id: tags
run: |
DOCKER_IMAGE='ghcr.io/${{ github.repository_owner }}/ssh-jump-server'
TAGS="${DOCKER_IMAGE}:latest"
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
- name: QEMU
uses: docker/setup-qemu-action@v3
- name: Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login
uses: docker/login-action@v3
with:
username: ${{ github.repository_owner }}
password: ${{ github.token }}
registry: ghcr.io
- name: Build
uses: docker/build-push-action@v5
with:
context: other/ssh-jump-server
push: true
platforms: linux/amd64,linux/arm64/v8
tags: ${{ steps.tags.outputs.tags }}