Skip to content

easier ways to get playlist owner address #1

easier ways to get playlist owner address

easier ways to get playlist owner address #1

Workflow file for this run

name: Mirroring
on:
push:
branches:
- main
jobs:
to_bitbucket:
runs-on: ubuntu-latest
timeout-minutes: 20
steps: # <-- must use actions/checkout before mirroring!
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url:
[email protected]:punk-domains/degen-radio-contracts.git
ssh_private_key: # <-- use 'secrets' to pass credential information.
${{ secrets.MIRROR_KEY }}
to_gitlab:
runs-on: ubuntu-latest
timeout-minutes: 20
steps: # <-- must use actions/checkout before mirroring!
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url:
[email protected]:degen-dapps/degen-radio-contracts.git
ssh_private_key: # <-- use 'secrets' to pass credential information.
${{ secrets.MIRROR_KEY }}