1

I am storing my scripts in Azure Blob storage. Right now, I am manually uploading each file to Blob storage when I do modify the files in git-hub branch.

I don't want to upload scripts manually when files get modified. Is there a way to push scrips from github to azure blob storage or any other methods?

Galet
  • 5,853
  • 21
  • 82
  • 148

1 Answers1

2

You could use Microsofts Visual Studio Team Services. It's free for 5 users and you get a Git Repo and a Build Pipeline. This couldbe the quickest solution to your problem. Otherwise, you probably would need to e.g. setup a build server or simple Azure Function, that deploys your files when triggered.

sebastian87
  • 454
  • 4
  • 15