Compare commits

...

7 commits

Author SHA1 Message Date
Hadrien
cfc061803c Revert "fix(ci): podman, defaulting on not stdin password"
Some checks failed
/ build (push) Failing after 2m24s
This reverts commit a7a86ff25a.
2026-03-24 18:31:43 +01:00
Hadrien
a7a86ff25a fix(ci): podman, defaulting on not stdin password
Some checks failed
/ build (push) Failing after 1m52s
2026-03-24 18:21:02 +01:00
Hadrien
ef6719cef9 fix(ci): podman username opt
Some checks failed
/ build (push) Failing after 1m51s
2026-03-24 18:11:05 +01:00
Hadrien
bba438a7a5 fix(ci): use podman
Some checks failed
/ build (push) Failing after 2m7s
2026-03-24 18:03:46 +01:00
Hadrien
549d112f81 Revert "fix(ci): don't run on docker"
Some checks failed
/ build (push) Failing after 1m24s
This reverts commit 3e833a5960.
2026-03-23 13:20:29 +01:00
Hadrien
3e833a5960 fix(ci): don't run on docker
Some checks failed
/ build (push) Has been cancelled
2026-03-23 12:59:55 +01:00
4e75a82416 Ajout d'un fichier d'action pour CI
Some checks failed
/ build (push) Failing after 4m26s
2026-01-26 14:35:10 +01:00

View file

@ -0,0 +1,24 @@
on: [push]
jobs:
build:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Podman
run: |
apt-get update
apt-get install -y podman
- name: Podman Login
run: |
echo "${{ secrets.DOCKER_PASSWORD }}" | podman login git.interhacker.space --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build Container Image
run: |
podman build -t git.interhacker.space/interhack/camp-website-2026:latest .
- name: Push Container Image
run: |
podman push git.interhacker.space/interhack/camp-website-2026:latest