mysql

Automate your GitHub workflows using Azure Action for MySQL

MIT License

Stars
11
Committers
11

Bot releases are hidden (Show)

mysql - v1.3.0 Latest Release

Published by DaeunYim about 2 years ago

Fix firewall rule issue

mysql - GitHub Action for Azure MySQL

Published by N-Usha about 4 years ago

Azure MySQL Action for GitHub enables you to automate your action workflow to deploy updates to Azure Database for MySQL server.

The action uses Connection String for authentication and SQL scripts to deploy to your MySQL database.

Sample workflow to deploy to an Azure database for MySQL server

# .github/workflows/mysql-deploy.yml
on: [push]

jobs:
  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v1
    - uses: azure/login@v1
      with:
        creds: ${{ secrets.AZURE_CREDENTIALS }}
    - uses: azure/mysql@v1
      with:
        server-name: REPLACE_THIS_WITH_YOUR_MYSQL_SERVER_NAME
        connection-string: ${{ secrets.AZURE_MYSQL_CONNECTION_STRING }}
        sql-file: './sqlFile.sql'

Released under MIT License

Package Rankings
Top 10.44% on Github actions
Related Projects