Skip to content

Commit

Permalink
Add new CI/CD workflow for 'update-starknet' branch
Browse files Browse the repository at this point in the history
This commit introduces a new Continuous Integration/Continuous Deployment (CI/CD) workflow specifically for the 'update-starknet' branch. The workflow includes steps for setting up QEMU, Docker Buildx, and logging into DockerHub. Note that building and pushing Docker images is currently commented out.
  • Loading branch information
CreatedByBdr committed Feb 10, 2024
1 parent 0c42ff9 commit b61f178
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/old-infra.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci

on:
push:
branches:
- 'update-starknet'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: yukilabs/gol2-indexer:update-starknet

0 comments on commit b61f178

Please sign in to comment.