Get database deployments working #12
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: Deploy Database Changes | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- 'api/ExpressedRealms.DB/Migrations/**' | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./api | |
permissions: | |
packages: write | |
contents: read | |
attestations: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Install dotnet-ef tool | |
run: dotnet tool install --global dotnet-ef | |
- name: Add dotnet tools to PATH | |
run: echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH" | |
- name: Restore Tools | |
run: dotnet tool restore | |
- name: Build Bundle | |
run: dotnet ef migrations bundle --self-contained --project ExpressedRealms.DB --startup-project ExpressedRealms.Server | |
- name: Get Public IP | |
id: ip | |
uses: haythem/public-ip@v1.3 | |
- name: Print Public IP | |
run: | | |
echo ${{ steps.ip.outputs.ipv4 }} | |
echo ${{ steps.ip.outputs.ipv6 }} | |
- name: Azure Login | |
uses: azure/login@v1 | |
with: | |
client-id: ${{ secrets.EXPRESSEDREALMS_DATABASE_AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.EXPRESSEDREALMS_DATABASE_AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.EXPRESSEDREALMS_DATABASE_AZURE_SUBSCRIPTION_ID }} | |
- name: Add IP to Firewall | |
run: az postgres flexible-server firewall-rule create --resource-group "${RESOURCE_GROUP}" --name "${SQL_SERVER}" --rule-name GitHubIP --start-ip-address "${IP_ADDRESS}" --end-ip-address "${IP_ADDRESS}" | |
env: | |
SQL_SERVER: ${{ secrets.POSTGRES_SERVER_NAME }} | |
IP_ADDRESS: ${{ steps.ip.outputs.ipv4 }} | |
RESOURCE_GROUP: ${{ secrets.POSTGRES_RESOURCE_GROUP }} | |
- name: Run Migrations | |
run: ./efbundle --connection "${{ secrets.CONNECTION_STRING }}" | |
working-directory: ./api | |
- name: Remove IP from Firewall | |
if: always() | |
run: az postgres flexible-server firewall-rule delete --resource-group "${RESOURCE_GROUP}" --name "${SQL_SERVER}" --rule-name GitHubIP --yes | |
env: | |
SQL_SERVER: ${{ secrets.POSTGRES_SERVER_NAME }} | |
RESOURCE_GROUP: ${{ secrets.POSTGRES_RESOURCE_GROUP }} |