Compare commits
7 commits
d8edb61bbf
...
cfc061803c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cfc061803c | ||
|
|
a7a86ff25a | ||
|
|
ef6719cef9 | ||
|
|
bba438a7a5 | ||
|
|
549d112f81 | ||
|
|
3e833a5960 | ||
| 4e75a82416 |
1 changed files with 24 additions and 0 deletions
24
.forgejo/workflows/build.yaml
Normal file
24
.forgejo/workflows/build.yaml
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue