new app added and readme edited #52
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: Shiny Container App service deployment | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- run: | | |
docker build . -t docker.io/vibbioinfocore/r-shiny-nc:${{ github.sha }} | |
docker push docker.io/vibbioinfocore/r-shiny-nc:${{ github.sha }} | |
- uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'app-dev-bitsnc' | |
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} | |
images: 'docker.io/vibbioinfocore/r-shiny-nc:${{ github.sha }}' |