From c302f4f5a125f0b9ebabf76566f5c2664c0380ed Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Fri, 5 Aug 2022 15:19:18 +0200 Subject: [PATCH] CI: Build and upload images. --- .github/workflows/deploydocker.yml | 135 +++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 .github/workflows/deploydocker.yml diff --git a/.github/workflows/deploydocker.yml b/.github/workflows/deploydocker.yml new file mode 100644 index 0000000..10496ca --- /dev/null +++ b/.github/workflows/deploydocker.yml @@ -0,0 +1,135 @@ +name: Deploy to Docker Hub / GHCR + +on: + pull_request: + push: + branches: + - master + tags: + - "v*.*.*" + +jobs: + server: + runs-on: ubuntu-latest + + steps: + - name: Check Out Repo + uses: actions/checkout@v3 + + - name: Generate Docker metadata + id: meta + uses: docker/metadata-action@v4 + with: + images: | + strukturag/nextcloud-spreed-signaling + ghcr.io/strukturag/nextcloud-spreed-signaling + tags: | + type=ref,event=branch + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} + type=sha,prefix= + - name: Cache Docker layers + uses: actions/cache@v3 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + - name: Login to Docker Hub + if: github.event_name != 'pull_request' + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + + - name: Login to GHCR + if: github.event_name != 'pull_request' + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + + - name: Build and push + id: docker_build + uses: docker/build-push-action@v3 + with: + context: . + file: ./docker/server/Dockerfile + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache + + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} + + proxy: + runs-on: ubuntu-latest + + steps: + - name: Check Out Repo + uses: actions/checkout@v3 + + - name: Generate Docker metadata + id: meta + uses: docker/metadata-action@v4 + with: + images: | + strukturag/nextcloud-spreed-signaling + ghcr.io/strukturag/nextcloud-spreed-signaling + labels: | + org.opencontainers.image.title=nextcloud-spreed-signaling-proxy + org.opencontainers.image.description=Signaling proxy for the standalone signaling server for Nextcloud Talk. + tags: | + type=ref,event=branch,suffix=-proxy + type=semver,pattern={{version}},suffix=-proxy + type=semver,pattern={{major}}.{{minor}},suffix=-proxy + type=semver,pattern={{major}},suffix=-proxy + type=sha,prefix=,suffix=-proxy + - name: Cache Docker layers + uses: actions/cache@v3 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + - name: Login to Docker Hub + if: github.event_name != 'pull_request' + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + + - name: Login to GHCR + if: github.event_name != 'pull_request' + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + + - name: Build and push + id: docker_build + uses: docker/build-push-action@v3 + with: + context: . + file: ./docker/proxy/Dockerfile + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache + + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }}