Skip to content

Instantly share code, notes, and snippets.

@bpatra
Created December 27, 2020 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bpatra/500055169202d40e90b98b6a4bf7a50f to your computer and use it in GitHub Desktop.
Save bpatra/500055169202d40e90b98b6a4bf7a50f to your computer and use it in GitHub Desktop.
Github actions to deploy to Azure Static Web Apps
name: Azure Static Web Apps CI/CD
on:
push:
branches:
- deploy
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- deploy
jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
with:
ruby-version: 2.7.2
- name: Install dependencies
run: bundle install
- name: Jekyll build
run: bundle exec jekyll build
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v0.0.1-preview
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_BAY_0E3662503 }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match you app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/_site" # App source code path
api_location: "api" # Api source code path - optional
output_location: "" # Built app content directory - optional
###### End of Repository/Build Configurations ######
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment