From 51fd668dfba82ab07da566faee28bc90ed33d09c Mon Sep 17 00:00:00 2001 From: Jonathan Ho Date: Wed, 5 Apr 2023 14:57:41 -0700 Subject: [PATCH 1/2] ci(rest): proxy add basic ci (#2976) * ci(rest-proxy); add basic ci * ci(rest-proxy); add workflow to path filter * ci(rest-proxy): fix path * ci(rest-proxy): add target * ci(rest-proxy): add publish job * ci(rest-proxy): fix image name path --- .github/workflows/rest-proxy.yml | 75 ++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .github/workflows/rest-proxy.yml diff --git a/.github/workflows/rest-proxy.yml b/.github/workflows/rest-proxy.yml new file mode 100644 index 000000000..7e551ec15 --- /dev/null +++ b/.github/workflows/rest-proxy.yml @@ -0,0 +1,75 @@ +name: Rest proxy + +on: + push: + branches: + - "main" + paths: + - ".github/workflows/rest-proxy.yml" + - "proxies/rest/**" + pull_request: + paths: + - ".github/workflows/rest-proxy.yml" + - "proxies/rest/**" + +jobs: + build: + name: Build docker image + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build and push + uses: docker/build-push-action@v4 + with: + push: false + tags: discordeno/rest-proxy:latest + context: proxies/rest + target: runner + outputs: type=docker,dest=/tmp/rest-proxy-image.tar + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: rest-proxy-image + path: /tmp/rest-proxy-image.tar + + use: + runs-on: ubuntu-latest + needs: build + steps: + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Download artifact + uses: actions/download-artifact@v2 + with: + name: rest-proxy-image + path: /tmp + - name: Load Docker image + run: docker load --input /tmp/rest-proxy-image.tar + + publish: + name: Publish image + needs: use + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Log in to the Container registry + uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + with: + registry: discordeno + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push Docker image + uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + with: + context: proxies/rest + push: true + tags: "ghcr.io/discordeno/rest-proxy:latest" From 25fd78b93eb7ece5ced6770490e06309a1d8d03a Mon Sep 17 00:00:00 2001 From: ITOH Date: Thu, 6 Apr 2023 00:09:44 +0200 Subject: [PATCH 2/2] ci(rest): fix rest proxy image registry (#2978) --- .github/workflows/rest-proxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rest-proxy.yml b/.github/workflows/rest-proxy.yml index 7e551ec15..8d72b9b9d 100644 --- a/.github/workflows/rest-proxy.yml +++ b/.github/workflows/rest-proxy.yml @@ -64,7 +64,7 @@ jobs: - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: - registry: discordeno + registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image