Skip to content

Commit

Permalink
wip manual action
Browse files Browse the repository at this point in the history
  • Loading branch information
eltorio committed Jan 24, 2024
1 parent cc37dd9 commit c82293d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/manual_run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Manual workflow for updating the repo
on:
workflow_dispatch:

jobs:
build_and_deploy_job:
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: synchronize
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm plugin install https://github.com/halkeye/helm-repo-html
./sync-charts.sh
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_GRAY_HILL_0C33EFA03 }}
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 your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/repo" # App source code path
###### End of Repository/Build Configurations ######

0 comments on commit c82293d

Please sign in to comment.