Update aclemons/slackware:current Docker digest to 26875e9 #73
Workflow file for this run
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-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
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 |