Update aclemons/slackware:current Docker digest to 3feab6e #788
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Mirror Sync | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
codeberg: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
show-progress: false | |
- name: Mirror to codeberg | |
run: | | |
git remote add mirror "https://${{ github.repository_owner }}:${{ secrets.CODEBERG_TOKEN }}@codeberg.org/${{ github.repository }}.git" | |
git push --tags --force --prune mirror "refs/remotes/origin/*:refs/heads/*" | |
git remote remove mirror |