Skip to content

create manual docker image #39

create manual docker image

create manual docker image #39

Workflow file for this run

name: create manual docker image
on:
workflow_dispatch:
inputs:
tag:
required: true
jobs:
publish-manual-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare SSH Key
run: echo "$SSH_KEY" > ~/.ssh/language_key
shell: bash
env:
SSH_KEY: ${{SSH_KEY_LANGUAGE_MODULE.SSH_KEY}}

Check failure on line 23 in .github/workflows/docker-manual.yml

View workflow run for this annotation

GitHub Actions / create manual docker image

Invalid workflow file

The workflow is not valid. .github/workflows/docker-manual.yml (Line: 23, Col: 18): Unrecognized named-value: 'SSH_KEY_LANGUAGE_MODULE'. Located at position 1 within expression: SSH_KEY_LANGUAGE_MODULE.SSH_KEY .github/workflows/docker-manual.yml (Line: 28, Col: 7): Unexpected value 'volumes'
- name: Build the openimis backend Docker image
run: |
docker build --tag ghcr.io/blsq/openimis-fe:${{ github.event.inputs.tag }} --squash .
docker push ghcr.io/blsq/openimis-fe:${{ github.event.inputs.tag }}
volumes:
- ~/.ssh/language_key:~/.ssh/language_key