Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

added whitelisted ips config option #4

added whitelisted ips config option

added whitelisted ips config option #4

Workflow file for this run

name: Deploy Images to GHCR
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
push-store-image:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Inventory Image'
run: |
docker build . --tag ghcr.io/qubic/go-node-fetcher:${{github.ref_name}}
docker push ghcr.io/qubic/go-node-fetcher:${{github.ref_name}}