mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 07:27:55 +00:00
f29b6db6e4
* Renamed staking-miner Dockerfiles * change readme stacking-miner * mv docker/ to scripts/docker/polkadot * renamed dockerfiles in scripts/docker * renamed Dockerfiles * Update scripts/docker/staking-miner/staking_miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * renamed release.Dockerfile * renamed staking-miner dockerfiles * add label polkadot_builder.Dockerfile * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot_injected_release.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/collator_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * move gpg server as variable to GHA config * simplified polkadot_builder.Dockerfile * gitlab-ci modify cp command in test-build-linux-stable * fix tests * renamed scripts/docker to scripts/dockerfiles * fix spellcheck * fix spellcheck Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
name: Publish Docker image for new releases
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-
|
|
- name: Login to Dockerhub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build and push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
push: true
|
|
file: scripts/docker/polkadot_injected_release.Dockerfile
|
|
tags: |
|
|
parity/polkadot:latest
|
|
parity/polkadot:${{ github.event.release.tag_name }}
|
|
build-args: |
|
|
POLKADOT_VERSION=${{ github.event.release.tag_name }}
|
|
VCS_REF=${{ github.ref }}
|
|
BUILD_DATE=${{ github.event.release.published_at }}
|
|
GPG_KEYSERVER="hkps://keys.mailvelope.com"
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|