Add deposit status message to deposit status tooltip #122
Workflow file for this run
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: Update UI Docker image | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
build: | |
if: github.repository == 'eclipse-pass/pass-ui' && (github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch') | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
ENV_FILE: https://raw.githubusercontent.com/eclipse-pass/pass-docker/main/.env | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Get current project version | |
id: project-version | |
run: echo "VERSION=`npx -c 'echo $npm_package_version'`" >> $GITHUB_OUTPUT | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build pass-ui | |
uses: ./.github/actions/build-pass-ui | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Push new Docker images' | |
run: | | |
docker push ghcr.io/eclipse-pass/pass-ui:latest | |
docker push ghcr.io/eclipse-pass/pass-ui:${{ steps.project-version.outputs.version }} |