feat: rewrite viewDirectory to include bitrate and sample date on fro… #4
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: Sync to Bitbucket | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Push to Bitbucket | |
env: | |
BITBUCKET_USERNAME: ${{ secrets.BITBUCKET_USERNAME }} | |
BITBUCKET_APP_PASSWORD: ${{ secrets.BITBUCKET_APP_PASSWORD }} | |
run: | | |
git remote add bitbucket https://$BITBUCKET_USERNAME:$BITBUCKET_APP_PASSWORD@bitbucket.org/rakma/minizo.git | |
git push --all bitbucket # Push all branches | |
git push --tags bitbucket # Push all tags |