We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab3c78 commit d008961Copy full SHA for d008961
1 file changed
.github/workflows/build-and-push.yml
@@ -85,6 +85,21 @@ jobs:
85
fedorapython/fedora-python-tox:${{ matrix.arch }}
86
fedorapython/fedora-python-tox:${{ matrix.arch }}-f${{ env.FEDORA_VERSION }}
87
88
+ description_update:
89
+ name: 'Update Dockerhub description'
90
+ if: github.event_name == 'push'
91
+ needs: build-and-push
92
+ runs-on: ubuntu-latest
93
+ steps:
94
+ - name: Checkout
95
+ uses: actions/checkout@v4
96
+ - name: 'Update Dockerhub description'
97
+ uses: peter-evans/dockerhub-description@v4
98
+ with:
99
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
100
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
101
+ repository: fedorapython/fedora-python-tox
102
+
103
release:
104
name: 'Update and test manifests'
105
if: github.event_name == 'push' || github.event_name == 'schedule'
0 commit comments