Skip to content

update aptos website to get api keys (#13) #5

update aptos website to get api keys (#13)

update aptos website to get api keys (#13) #5

name: Build Docker image
on:
push:
branches: [ main, stable ]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Copy env file
id: setup-env
run: cp example.env .env
- name: Build Docker images
id: build
run: docker compose build
- name: Push Docker images
id: push
run: docker compose push