Skip to content

fix: remove alpine images #12

fix: remove alpine images

fix: remove alpine images #12

---
name: update workflow from versions
on:
push:
branches: [ "develop" ]
paths:
- versions.json
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_WORKFLOW_TOKEN }}
- uses: fregante/setup-git-user@v2
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Update docker-publish workflow
run: ./scripts/update_workflow.py
- name: Push updates
run: |
git add .
git diff-index --quiet HEAD || git commit -m "actions: update docker-publish workflow"
git push