Skip to content

just ionic restriction for internal storage, no more other external s… #129

just ionic restriction for internal storage, no more other external s…

just ionic restriction for internal storage, no more other external s… #129

Workflow file for this run

name: Create App Docker Images
on:
push:
branches:
- "mainnet"
- "ghostnet"
paths:
- "app/**"
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set outputs
id: vars
run: |
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}"
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}"
echo "branch=${GITHUB_REF#refs/heads/}" >> "${GITHUB_OUTPUT}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push mainnet
if: ${{ github.ref == 'refs/heads/mainnet' }}
id: docker_build_tzvotes_mainnet
uses: docker/build-push-action@v3
with:
file: ./app/Dockerfile.mainnet
platforms: linux/amd64
# cache-from: type=gha
no-cache: true
push: true
tags: |
ghcr.io/marigold-dev/tzvote:${{ steps.vars.outputs.date }}-${{ steps.vars.outputs.sha_short }}-mainnet
- name: Build and push testnet
if: ${{ github.ref == 'refs/heads/ghostnet' }}
id: docker_build_tzvotes_testnet
uses: docker/build-push-action@v3
with:
file: ./app/Dockerfile.ghostnet
platforms: linux/amd64
# cache-from: type=gha
no-cache: true
push: true
tags: |
ghcr.io/marigold-dev/tzvote:${{ steps.vars.outputs.date }}-${{ steps.vars.outputs.sha_short }}-ghostnet