Skip to content

fix commit sha web-app #9

fix commit sha web-app

fix commit sha web-app #9

Workflow file for this run

name: Build Web App
on:
push:
paths:
- web-app/**
- .github/workflows/build-web-app.yml
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/0lnetworkcommunity/explorer/web-app
tags: |
type=sha,enable=true,priority=100,prefix=,suffix=,format=long
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./web-app
file: ./web-app/docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |

Check failure on line 44 in .github/workflows/build-web-app.yml

View workflow run for this annotation

GitHub Actions / Build Web App

Invalid workflow file

The workflow is not valid. .github/workflows/build-web-app.yml (Line: 44, Col: 23): Unrecognized named-value: 'GITHUB_SHA'. Located at position 1 within expression: GITHUB_SHA
CI_COMMIT_SHA=${{ GITHUB_SHA }}