dockerize and CI attempt 1
This commit is contained in:
parent
f9f29d6be7
commit
190570fa52
4 changed files with 71 additions and 2 deletions
56
.gitea/workflows/build.yml
Normal file
56
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,56 @@
|
|||
name: Deploy
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Start webhook
|
||||
if: ${{always()}}
|
||||
continue-on-error: true
|
||||
uses: fjogeleit/http-request-action@v1
|
||||
with:
|
||||
url: ${{vars.NODE_RED_WORKFLOW_STARTED_URL}}
|
||||
data: '{"job": ${{toJSON(job)}}, "gitea": ${{toJSON(gitea)}}}'
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Docker install
|
||||
run: |
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt-get update
|
||||
apt-get install -yqq ca-certificates curl
|
||||
install -m 0755 -d /etc/apt/keyrings
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
|
||||
chmod a+r /etc/apt/keyrings/docker.asc
|
||||
echo \
|
||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
|
||||
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
||||
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update
|
||||
apt-get install -yqq docker-ce docker-ce-cli containerd.io
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Docker Login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.riksolo.com
|
||||
username: riksolo
|
||||
password: ${{secrets.CONTAINER_REGISTRY_TOKEN}}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: git.riksolo.com/riksolo/eleventy-riksolo-com:latest , eleventy-riksolo-com:${{github.sha}}
|
||||
|
||||
- name: Completion webhook
|
||||
if: ${{always()}}
|
||||
continue-on-error: true
|
||||
uses: fjogeleit/http-request-action@v1
|
||||
with:
|
||||
url: ${{vars.NODE_RED_WORKFLOW_COMPLETE_URL}}
|
||||
data: '{"job": ${{toJSON(job)}}, "gitea": ${{toJSON(gitea)}}}'
|
Loading…
Add table
Add a link
Reference in a new issue