-
Notifications
You must be signed in to change notification settings - Fork 65
51 lines (43 loc) · 1.33 KB
/
package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build and Deploy
on:
push:
branches:
- pipelinebuildpackage
pull_request:
branches:
- pipelinebuildpackage
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: List all files/directories in root
run: ls
- name: Delete pshproj files
run: find . -name '*.pshproj' -delete
- name: Delete pssproj files
run: find . -name '*.pssproj' -delete
- name: Copy files
uses: actions/upload-artifact@v2
with:
name: Microsoft.Xrm.Data.PowerShell
path: ${{ github.workspace }}/Microsoft.Xrm.Data.PowerShell
- name: PowerShell
run: |
echo ${{ github.workspace }}/Microsoft.Xrm.Data.PowerShell
ls ${{ github.workspace }}
#Publish-Module -NuGetApiKey $(GalleryKey) -Path ${{ github.workspace }}/Microsoft.Xrm.Data.PowerShell -verbose -whatif
working-directory: ${{ github.workspace }}
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: Microsoft.Xrm.Data.PowerShell
path: ${{ github.workspace }}/Microsoft.Xrm.Data.PowerShell
- name: Publish artifact
uses: actions/upload-artifact@v2
with:
name: Microsoft.Xrm.Data.PowerShell
path: ${{ github.workspace }}/Microsoft.Xrm.Data.PowerShell