fix: allow proxy submission to submit without manuscript #112
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@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Get current project version | |
id: project-version | |
run: echo "VERSION=`npx -c 'echo $npm_package_version'`" >> $GITHUB_OUTPUT | |
- name: Install dependencies | |
run: yarn 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 }} |