mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-29 04:49:44 +01:00
further files which contained 3.1dev
This commit is contained in:
parent
b6143e1fb9
commit
5246194bee
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -11,7 +11,7 @@ Feel free to remove this line but please stick to the template. Not filling out
|
||||
-->
|
||||
|
||||
**Which version are you referring to**
|
||||
3.0.x or 3.1dev? We might close this right away otherwise.
|
||||
3.0.x or 3.2?
|
||||
|
||||
|
||||
**Please check this repo whether this is a known feature request**
|
||||
|
@ -8,4 +8,4 @@ assignees: ''
|
||||
---
|
||||
|
||||
**Which version are you referring to**
|
||||
3.0.x or 3.1dev? (please check also how old your version is compare to the ones here)
|
||||
3.0.x or 3.2? (please check also how old your version is compare to the ones here)
|
||||
|
63
.github/workflows/docker-3.2.yml
vendored
Normal file
63
.github/workflows/docker-3.2.yml
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
name: docker-3.1dev
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 3.1dev
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 8 * * 1"
|
||||
|
||||
env:
|
||||
BUILD_VERSION: "3.1dev"
|
||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||
|
||||
jobs:
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- name: Source checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup QEMU
|
||||
id: qemu
|
||||
uses: docker/setup-qemu-action@v2.2.0
|
||||
|
||||
- name: Setup Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Set Docker metadata
|
||||
id: docker_meta
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: ${{ github.repository }}
|
||||
labels: |
|
||||
org.opencontainers.image.version=${{ env.BUILD_VERSION }}
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
org.opencontainers.image.title=${{ github.repository }}
|
||||
|
||||
- name: GitHub login
|
||||
if: ${{ github.event_name != 'pull_request' }}
|
||||
uses: docker/login-action@v2.2.0
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v4.1.1
|
||||
with:
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
context: .
|
||||
file: Dockerfile.git
|
||||
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6,linux/ppc64le
|
||||
build-args: BUILD_VERSION
|
||||
cache-from: type=gha, scope=${{ github.workflow }}
|
||||
cache-to: type=gha, scope=${{ github.workflow }}
|
||||
labels: ${{ steps.docker_meta.outputs.labels }}
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:${{ env.BUILD_VERSION }}
|
||||
ghcr.io/${{ github.repository }}:latest
|
Loading…
Reference in New Issue
Block a user