4 Commits
0.0.1 ... 0.0.5

Author SHA1 Message Date
0ebb992280 Rename image
Some checks failed
Build & Release / build-docker-image (push) Successful in 1m24s
Build & Release / deploy-to-production (push) Failing after 5s
2026-02-17 15:02:25 +01:00
6758d1f0bf Update build act container to Ubuntu 24.04
Some checks failed
Build & Release / build-docker-image (push) Successful in 4m4s
Build & Release / deploy-to-production (push) Failing after 5s
2026-02-17 14:30:45 +01:00
3a0225e635 Update buildx docker version tag
Some checks failed
Build & Release / build-docker-image (push) Failing after 35s
Build & Release / deploy-to-production (push) Has been skipped
2026-02-17 14:06:00 +01:00
4258b0a7af Run on node20
Some checks failed
Build & Release / build-docker-image (push) Failing after 23s
Build & Release / deploy-to-production (push) Has been skipped
2026-02-17 13:58:08 +01:00

View File

@@ -7,7 +7,7 @@ on:
env:
ENDPOINT: services-3
STACK: mastodon
IMAGE: com.devsoap/mastobot
IMAGE: mastodon/mastobot
TAG: ${{ gitea.ref_name }}
CACHE_NAME: cache-python-dependencies-mastobot
RUNNER_TOOL_CACHE: /toolcache
@@ -15,16 +15,16 @@ env:
jobs:
build-docker-image:
runs-on: python
runs-on: node20
container:
image: catthehacker/ubuntu:act-20.04
image: catthehacker/ubuntu:act-24.04
steps:
- name: Checkout Docker file
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }}
ssh-key: ${{ secrets.SSH_JOHN_PRIVATE_KEY }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to Devsoap Container Registry
uses: docker/login-action@v2
with:
@@ -46,11 +46,10 @@ jobs:
deploy-to-production:
if: ${{ always() && needs.build-docker-image.result == 'success' }}
needs: build-docker-image
runs-on: python
runs-on: node20
steps:
- name: Checkout infrastructure config
run: |
echo "Cloning repository ${{ env.REPOSITORY_URL }}"
git clone -v --depth=1 ${{ env.REPOSITORY_URL }} infra
env:
REPOSITORY_URL: ${{ env.GIT_REPO_USER }}@${{ env.GIT_REPO_INTERNAL }}:${{ env.DEVSOAP_INFRA_GIT_REPO }}