2021-08-28 17:29:13 +02:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/release.yml"
|
|
|
|
- "src/**"
|
|
|
|
- "migrations/**"
|
|
|
|
- "hooks/**"
|
|
|
|
- "docker/**"
|
|
|
|
- "Cargo.*"
|
|
|
|
- "build.rs"
|
|
|
|
- "diesel.toml"
|
|
|
|
- "rust-toolchain"
|
|
|
|
|
|
|
|
branches: # Only on paths above
|
|
|
|
- main
|
|
|
|
|
|
|
|
tags: # Always, regardless of paths above
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# https://github.com/marketplace/actions/skip-duplicate-actions
|
|
|
|
# Some checks to determine if we need to continue with building a new docker.
|
|
|
|
# We will skip this check if we are creating a tag, because that has the same hash as a previous run already.
|
|
|
|
skip_check:
|
2022-10-21 13:21:57 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-08-28 17:29:13 +02:00
|
|
|
if: ${{ github.repository == 'dani-garcia/vaultwarden' }}
|
|
|
|
outputs:
|
|
|
|
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
|
|
|
steps:
|
|
|
|
- name: Skip Duplicates Actions
|
|
|
|
id: skip_check
|
2022-12-15 17:15:48 +01:00
|
|
|
uses: fkirc/skip-duplicate-actions@12aca0a884f6137d619d6a8a09fcc3406ced5281 # v5.3.0
|
2021-08-28 17:29:13 +02:00
|
|
|
with:
|
|
|
|
cancel_others: 'true'
|
|
|
|
# Only run this when not creating a tag
|
|
|
|
if: ${{ startsWith(github.ref, 'refs/heads/') }}
|
|
|
|
|
|
|
|
docker-build:
|
2022-10-21 13:21:57 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2022-12-15 17:15:48 +01:00
|
|
|
timeout-minutes: 120
|
2021-08-28 17:29:13 +02:00
|
|
|
needs: skip_check
|
2021-09-13 12:00:52 +02:00
|
|
|
# Start a local docker registry to be used to generate multi-arch images.
|
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
2021-08-28 17:29:13 +02:00
|
|
|
env:
|
2023-01-22 10:01:02 +01:00
|
|
|
# Use BuildKit (https://docs.docker.com/build/buildkit/) for better
|
|
|
|
# build performance and the ability to copy extended file attributes
|
|
|
|
# (e.g., for executable capabilities) across build phases.
|
|
|
|
DOCKER_BUILDKIT: 1
|
2021-08-28 17:29:13 +02:00
|
|
|
# DOCKER_REPO/secrets.DOCKERHUB_REPO needs to be 'index.docker.io/<user>/<repo>'
|
|
|
|
DOCKER_REPO: ${{ secrets.DOCKERHUB_REPO }}
|
|
|
|
SOURCE_COMMIT: ${{ github.sha }}
|
|
|
|
SOURCE_REPOSITORY_URL: "https://github.com/${{ github.repository }}"
|
2021-09-13 12:00:52 +02:00
|
|
|
if: ${{ needs.skip_check.outputs.should_skip != 'true' && github.repository == 'dani-garcia/vaultwarden' }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
base_image: ["debian","alpine"]
|
|
|
|
|
2021-08-28 17:29:13 +02:00
|
|
|
steps:
|
|
|
|
# Checkout the repo
|
|
|
|
- name: Checkout
|
2022-12-15 17:15:48 +01:00
|
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
2021-08-28 17:29:13 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
# Login to Docker Hub
|
|
|
|
- name: Login to Docker Hub
|
2022-10-21 13:21:57 +02:00
|
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
|
2021-08-28 17:29:13 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
# Determine Docker Tag
|
|
|
|
- name: Init Variables
|
|
|
|
id: vars
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
# Check which main tag we are going to build determined by github.ref
|
|
|
|
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
|
2022-11-04 12:56:02 +01:00
|
|
|
echo "DOCKER_TAG=${GITHUB_REF#refs/*/}" | tee -a "${GITHUB_OUTPUT}"
|
2021-08-28 17:29:13 +02:00
|
|
|
elif [[ "${{ github.ref }}" == refs/heads/* ]]; then
|
2022-11-04 12:56:02 +01:00
|
|
|
echo "DOCKER_TAG=testing" | tee -a "${GITHUB_OUTPUT}"
|
2021-08-28 17:29:13 +02:00
|
|
|
fi
|
|
|
|
# End Determine Docker Tag
|
|
|
|
|
|
|
|
- name: Build Debian based images
|
|
|
|
shell: bash
|
|
|
|
env:
|
2021-09-13 12:00:52 +02:00
|
|
|
DOCKER_TAG: "${{steps.vars.outputs.DOCKER_TAG}}"
|
2021-08-28 17:29:13 +02:00
|
|
|
run: |
|
|
|
|
./hooks/build
|
2021-09-13 12:00:52 +02:00
|
|
|
if: ${{ matrix.base_image == 'debian' }}
|
2021-08-28 17:29:13 +02:00
|
|
|
|
|
|
|
- name: Push Debian based images
|
|
|
|
shell: bash
|
|
|
|
env:
|
2021-09-13 12:00:52 +02:00
|
|
|
DOCKER_TAG: "${{steps.vars.outputs.DOCKER_TAG}}"
|
2021-08-28 17:29:13 +02:00
|
|
|
run: |
|
|
|
|
./hooks/push
|
2021-09-13 12:00:52 +02:00
|
|
|
if: ${{ matrix.base_image == 'debian' }}
|
2021-08-28 17:29:13 +02:00
|
|
|
|
|
|
|
- name: Build Alpine based images
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
DOCKER_TAG: "${{steps.vars.outputs.DOCKER_TAG}}-alpine"
|
|
|
|
run: |
|
|
|
|
./hooks/build
|
2021-09-13 12:00:52 +02:00
|
|
|
if: ${{ matrix.base_image == 'alpine' }}
|
2021-08-28 17:29:13 +02:00
|
|
|
|
|
|
|
- name: Push Alpine based images
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
DOCKER_TAG: "${{steps.vars.outputs.DOCKER_TAG}}-alpine"
|
|
|
|
run: |
|
|
|
|
./hooks/push
|
2021-09-13 12:00:52 +02:00
|
|
|
if: ${{ matrix.base_image == 'alpine' }}
|