diff --git a/.gitea/workflows/56-ubuntu.yaml b/.gitea/workflows/56-ubuntu.yaml new file mode 100644 index 0000000..1d89625 --- /dev/null +++ b/.gitea/workflows/56-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 5.6 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=5.6 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:5.6-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/72-ubuntu.yaml b/.gitea/workflows/72-ubuntu.yaml new file mode 100644 index 0000000..8b118df --- /dev/null +++ b/.gitea/workflows/72-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 7.2 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=7.2 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:7.2-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/73-ubuntu.yaml b/.gitea/workflows/73-ubuntu.yaml new file mode 100644 index 0000000..474b66e --- /dev/null +++ b/.gitea/workflows/73-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 7.3 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=7.3 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:7.3-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/74-ubuntu.yaml b/.gitea/workflows/74-ubuntu.yaml new file mode 100644 index 0000000..9f8971a --- /dev/null +++ b/.gitea/workflows/74-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 7.4 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=7.4 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:7.4-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/80-ubuntu.yaml b/.gitea/workflows/80-ubuntu.yaml new file mode 100644 index 0000000..f3f5ded --- /dev/null +++ b/.gitea/workflows/80-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 8.0 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=8.0 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:8.0-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/81-ubuntu.yaml b/.gitea/workflows/81-ubuntu.yaml new file mode 100644 index 0000000..4aba9fd --- /dev/null +++ b/.gitea/workflows/81-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 8.1 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=8.1 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:8.1-ubuntu \ No newline at end of file diff --git a/.gitea/workflows/82-ubuntu.yaml b/.gitea/workflows/82-ubuntu.yaml new file mode 100644 index 0000000..1e070be --- /dev/null +++ b/.gitea/workflows/82-ubuntu.yaml @@ -0,0 +1,32 @@ +name: Build and Push Ubuntu PHP 8.2 Image +on: + push: + branches: + - master + +jobs: + build: + name: Build and push image + runs-on: ubuntu-latest + container: + image: ghcr.io/catthehacker/ubuntu:act-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Login to Docker Winter Access Git Registry + uses: docker/login-action@v3 + with: + registry: git.winteraccess.id + username: aditya.prima + password: ${{ secrets.PATOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.ubuntu + build-args: | + UBUNTU_VERSION=latest + PHP_VERSION=8.2 + push: true + tags: | + git.winteraccess.id/${{ gitea.repository }}:8.2-ubuntu \ No newline at end of file