From da2b22a1f99b36bc4784090cec56e6341997a661 Mon Sep 17 00:00:00 2001 From: harisang Date: Wed, 3 Jul 2024 01:44:32 +0300 Subject: [PATCH] add deploy yaml --- .github/workflows/deploy.yaml | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..b5c1a13 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,45 @@ +name: deploy + +on: + push: + branches: [main] + tags: [v*] + +jobs: + deploy: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v3 + + - uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - id: meta + uses: docker/metadata-action@v4 + with: + images: ghcr.io/${{ github.repository }} + labels: | + org.opencontainers.image.licenses=MIT OR Apache-2.0 + - name: Push Project Image + uses: docker/build-push-action@v3 + with: + context: . + file: Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + - uses: cowprotocol/autodeploy-action@v2 + if: ${{ github.ref == 'refs/heads/main' }} + with: + images: ghcr.io/cowprotocol/token-imbalances:main + url: ${{ secrets.AUTODEPLOY_URL }} + token: ${{ secrets.AUTODEPLOY_TOKEN }} + timeout: 600000 # 10 minutes \ No newline at end of file