Compare commits
No commits in common. "d270b638e5cfab3434127565507d6a97f52f47e4" and "2a4b6ed11655d64d9b56f2c9de862e9555210588" have entirely different histories.
d270b638e5
...
2a4b6ed116
2 changed files with 1 additions and 42 deletions
|
@ -1,41 +0,0 @@
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-image:
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: quay.io/podman/stable:v4.9.0
|
|
||||||
steps:
|
|
||||||
- name: Install additional packages
|
|
||||||
run: |
|
|
||||||
dnf -y install git nodejs
|
|
||||||
|
|
||||||
- name: Setup podman
|
|
||||||
run: |
|
|
||||||
sudo -u podman podman login gitea.angry.im --username PeterCxy --password ${{ secrets.FORGEJO_TOKEN }}
|
|
||||||
|
|
||||||
- name: Repository Checkout
|
|
||||||
uses: https://gitea.angry.im/actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Detect Directory Changes
|
|
||||||
id: changed-dirs
|
|
||||||
uses: https://github.com/tj-actions/changed-files@v42
|
|
||||||
with:
|
|
||||||
dir_names: 'true'
|
|
||||||
dir_names_max_depth: '1'
|
|
||||||
dir_names_exclude_current_dir: 'true'
|
|
||||||
files_ignore: |
|
|
||||||
.forgejo/**
|
|
||||||
build-image.sh
|
|
||||||
|
|
||||||
- name: Build & Push
|
|
||||||
if: ${{ steps.changed-dirs.all_changed_files_count != '0' }}
|
|
||||||
env:
|
|
||||||
ALL_CHANGED_DIRS: ${{ steps.changed-dirs.outputs.all_changed_files }}
|
|
||||||
run: |
|
|
||||||
for file in ${ALL_CHANGED_DIRS}; do
|
|
||||||
echo "---- Building ${file} ----"
|
|
||||||
sudo -u podman ./build-image.sh ${file}
|
|
||||||
done
|
|
|
@ -1,4 +1,4 @@
|
||||||
ARG ELEMENT_VER=v1.11.58
|
ARG ELEMENT_VER=v1.11.57
|
||||||
|
|
||||||
FROM debian:11 AS builder
|
FROM debian:11 AS builder
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue