Build and publish scroll-alpine image #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish scroll-alpine image | |
# This workflow aims to build images from the feat-deterministic-deployment branch | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Clone, Build, Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Update submodules recursively | |
run: git submodule update --init --recursive | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
- name: Install dependencies | |
run: npm install | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Dockerhub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build deploy image | |
id: build_deploy_image | |
env: | |
REPOSITORY: scrolltech/scroll-stack-contracts | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
context: . | |
file: docker/Dockerfile.deploy | |
tags: | | |
${{ env.REPOSITORY }}:deploy-${{ github.sha }} | |
- name: Build gen image | |
id: build_gen_image | |
env: | |
REPOSITORY: scrolltech/scroll-stack-contracts | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
context: . | |
file: docker/Dockerfile.gen-configs | |
tags: | | |
${{ env.REPOSITORY }}:gen-configs-${{ github.sha }} | |
- name: Build verify image | |
id: build_verify_image | |
env: | |
REPOSITORY: scrolltech/scroll-stack-contracts | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
context: . | |
file: docker/Dockerfile.verify | |
tags: | | |
${{ env.REPOSITORY }}:verify-${{ github.sha }} |