test
This commit is contained in:
commit
e734ec1ff6
21
action.yml
Normal file
21
action.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# action.yml
|
||||||
|
name: 'build docker image and push to code'
|
||||||
|
description: 'build docker image and push to simcu code'
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- uses: docker://node:18
|
||||||
|
with:
|
||||||
|
entrypoint: 'bash -c'
|
||||||
|
args:
|
||||||
|
- npm install
|
||||||
|
- npm run build -- --outputPath=dist
|
||||||
|
|
||||||
|
- shell: sh
|
||||||
|
run: |
|
||||||
|
echo "FROM nginx:alpine" > Dockerfile
|
||||||
|
echo "COPY dist /usr/share/nginx/html" >> Dockerfile
|
||||||
|
echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile
|
||||||
|
docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .
|
||||||
|
docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}
|
||||||
|
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}
|
Loading…
Reference in New Issue
Block a user