Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
karim20230 authored Nov 5, 2024
1 parent 26da7ca commit 7d7fb21
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Upload to Azure Storage

on:
workflow_dispatch:

jobs:
upload:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Upload files to Azure Storage
run: |
az storage blob upload-batch -d 'ghafreleasesstorage' -s . --account-name ghafreleasesstorage --overwrite

0 comments on commit 7d7fb21

Please sign in to comment.