change crab rpc #4
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: Release Darwinia | |
on: | |
push: | |
branches: | |
- crab | |
- darwinia | |
# tags: | |
# - "v*" | |
# workflow_dispatch: | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
jobs: | |
publish-docker-image: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker login | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ${{ env.DOCKER_REGISTRY }} | |
- uses: benjlevesque/[email protected] | |
id: short-sha | |
- uses: olegtarasov/[email protected] | |
id: tag-name | |
- name: Build with sha | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
tags: | | |
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:sha-${{ steps.short-sha.outputs.sha }} | |
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:staging | |
- name: Build with tag | |
uses: docker/build-push-action@v3 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
push: true | |
tags: | | |
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:${{ steps.tag-name.outputs.tag }} | |
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:latest |