diff --git a/.gitea/workflows/ci-main-debian.yml b/.gitea/workflows/ci-main-debian.yml new file mode 100644 index 0000000..5825429 --- /dev/null +++ b/.gitea/workflows/ci-main-debian.yml @@ -0,0 +1,25 @@ +# +name: Deployment Verification Debian + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + deploy-and-test: + name: Run Hardening on Debian + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Make the script files executable + run: chmod +x * -R + + - name: Run a script + run: sudo ./main.sh \ No newline at end of file diff --git a/.gitea/workflows/ci-main-ubuntu.yml b/.gitea/workflows/ci-main-ubuntu.yml index 98956fd..777b4ee 100644 --- a/.gitea/workflows/ci-main-ubuntu.yml +++ b/.gitea/workflows/ci-main-ubuntu.yml @@ -11,7 +11,9 @@ on: jobs: deploy-and-test: + name: Run Hardening on Ubuntu runs-on: ubuntu-latest + container: amd64/debian:12 steps: - name: Checkout