Skip to content
Merged

Pipe #28

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pipe 2
  • Loading branch information
enriquezrene committed Nov 25, 2020
commit 44cd7c93bdda8c23aa8983c904c06f5e4dd6b71c
9 changes: 7 additions & 2 deletions .github/workflows/CD-azure-functions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CD process to deploy to AzureFuncions
name: Other stuff

on:
# Trigger the workflow on push or pull request,
Expand All @@ -21,7 +21,12 @@ jobs:
node-version: '10.x'
- name: 'run npm'
run: |
ls
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
cd AutomaticClockOuts
npm i -g azure-functions-core-tools@core --unsafe-perm true
az login -u ${{ env.AZ_USERNAME }} -p {{ env.AZ_PASSWORD }}
npm install
func azure functionapp publish time-tracker-azure-functions
# - name: 'Run Azure Functions Action'
# uses: Azure/functions-action@v1
# id: fa
Expand Down