Merge pull request #10 from gnosischain/fix_validator_metadata #10
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 & Release GC valtrack scraper | |
on: | |
# pull_request: | |
# types: [ closed ] | |
push: | |
branches: | |
- main | |
concurrency: | |
group: gc-valtrack-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
# if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get Organization Name | |
id: org_name | |
run: | | |
org_name=$(echo "${{ github.repository_owner }}") | |
echo "Organization Name: $org_name" | |
echo "org_name=$org_name" >> $GITHUB_OUTPUT | |
- name: Extract commit | |
id: commit | |
uses: prompt/actions-commit-hash@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3.3.0 | |
with: | |
registry: ghcr.io | |
username: ${{ steps.org_name.outputs.org_name }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push Latest | |
run: | | |
docker buildx build --platform linux/amd64,linux/arm64 \ | |
--tag ghcr.io/${{ steps.org_name.outputs.org_name }}/valtrack:latest \ | |
--push . | |
- name: Push Versioned | |
run: | | |
docker buildx build --platform linux/amd64,linux/arm64 \ | |
--tag ghcr.io/${{ steps.org_name.outputs.org_name }}/valtrack:${{ steps.commit.outputs.short }} \ | |
--push . |