CI/CD build apk #5

Merged
stcb merged 15 commits from apkbuild into dev 2025-02-17 09:29:24 +00:00
2 changed files with 5 additions and 10 deletions
Showing only changes of commit 33b6485547 - Show all commits

View File

@ -6,11 +6,9 @@ on:
jobs: jobs:
build: build:
runs-on: debian runs-on: debian
defaults:
run:
working-directory: dialer
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
subpath: dialer/
- uses: icing/flutter@test - uses: icing/flutter@test
- uses: actions/upload-artifact@v1 - uses: actions/upload-artifact@v1
with: with:

View File

@ -1,16 +1,14 @@
on: on:
push: push:
paths: #paths:
- website/** # - website/**
jobs: jobs:
deploy: deploy:
runs-on: debian runs-on: debian
defaults:
run:
working-directory: website
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
subpath: website/
- name: setup env - name: setup env
run: | run: |
. ./.env || true . ./.env || true
@ -29,10 +27,9 @@ jobs:
- uses: actions/kaniko@v1 - uses: actions/kaniko@v1
with: with:
password: "${{ secrets.PKGRW }}" password: "${{ secrets.PKGRW }}"
dockerfile: website/Dockerfile dockerfile: Dockerfile
- uses: actions/k8sdeploy@v1 - uses: actions/k8sdeploy@v1
with: with:
kubeconfig: "${{ secrets.K8S }}" kubeconfig: "${{ secrets.K8S }}"
registry_password: "${{ secrets.PKGRW }}" registry_password: "${{ secrets.PKGRW }}"
workdir: website