🐛 replace env var to Gas station API #6
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: Docker nft ghostnet staging | |
on: | |
push: | |
branches: | |
- 'staging' | |
pull_request: | |
branches: | |
- 'staging' | |
types: | |
- closed | |
workflow_dispatch: | |
jobs: | |
ui: | |
strategy: | |
matrix: | |
network: [ghostnet] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
- 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}" | |
- name: Replace endpoint | |
id: sed | |
run: | | |
set -x | |
ls -last . | |
sed -i 's|http://localhost:8000|https://staging.gas-station-api.marigold.dev|g' ./examples/nft/.env | |
sed -i 's|KT1Re88VMEJ7TLHTkXSHQYZQTD3MP3k7j6Ar|KT1CvtrTV7snJSxdnQqhSqh47tyVYhm4ACGB|g' ./examples/nft/.env | |
sed -i 's|KT1Rp1rgfwS25XrWU6fUnR8cw6KMZBhDvXdq|KT1K9X6QpuTWFX4S5ieDGTUdjAHQtiFRH5op|g' ./examples/nft/.env | |
cat ./examples/nft/.env | |
- name: Set up Docker Buildx | |
uses: docker/Setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push version | |
uses: docker/build-push-action@v3 | |
with: | |
file: ./examples/nft/Dockerfile.${{ matrix.network }} | |
context: ./examples/nft/ | |
push: true | |
tags: | | |
ghcr.io/marigold-dev/gas-station-nft-${{ matrix.network }}:${{ steps.vars.outputs.date }}-${{ steps.vars.outputs.sha_short }}-staging | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |