Merge pull request #195 from osmosis-labs/trinity/fix-price-feed #397
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: Docker | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*.*.*" | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: "Tags to build and push" | |
required: true | |
type: string | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build-push: | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
DOCKER_IMAGE: osmosis-labs/meshd | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
check-latest: true | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE }} | |
tags: | | |
type=ref,event=branch | |
type=raw,value=latest,enable={{is_default_branch}} | |
type=semver,pattern=v{{major}}.{{minor}} | |
type=semver,pattern={{version}},value=v${{ inputs.tags }},enable=${{ inputs.tags != '' }} | |
flavor: | | |
latest=false | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run go vendor | |
run: | | |
cd demo/ && go mod vendor | |
- name: Publish to GitHub Packages | |
uses: docker/build-push-action@v4 | |
with: | |
file: consumer.Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
ghcr.io/osmosis-labs/meshconsumerd:latest | |
- name: Publish to GitHub Packages | |
uses: docker/build-push-action@v4 | |
with: | |
file: provider.Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
ghcr.io/osmosis-labs/meshproviderd:latest |