Add build action
rtj.dev Build and Deploy / Build-and-Deploy (push) Failing after 1m18s
Details
rtj.dev Build and Deploy / Build-and-Deploy (push) Failing after 1m18s
Details
This commit is contained in:
parent
0d94a0bb36
commit
e7f1e9adc0
|
@ -0,0 +1,23 @@
|
||||||
|
name: rtj.dev Build and Deploy
|
||||||
|
run-name: Build and Deploy
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-and-Deploy:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
|
- name: Pass login information
|
||||||
|
env:
|
||||||
|
DOCKER_AUTH_CONFIG: ${{ secrets.DOCKER_AUTH_CONFIG }}
|
||||||
|
run: |
|
||||||
|
docker info
|
||||||
|
mkdir -p $HOME/.docker
|
||||||
|
echo "$DOCKER_AUTH_CONFIG" > $HOME/.docker/config.json
|
||||||
|
|
||||||
|
- name: Build Docker Image
|
||||||
|
run: |
|
||||||
|
docker build -f Dockerfile -t rtj.dev:0.0.1
|
||||||
|
docker push rtj.dev:0.0.1
|
|
@ -0,0 +1,4 @@
|
||||||
|
FROM klakegg/hugo:ext-alpine-onbuild as hugo
|
||||||
|
|
||||||
|
FROM nginx
|
||||||
|
COPY --from=hugo /target /usr/share/nginx/html
|
Loading…
Reference in New Issue