We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a47ed1 commit d065bcdCopy full SHA for d065bcd
1 file changed
.github/workflows/workflow.yml
@@ -18,8 +18,15 @@ jobs:
18
# Checkout code
19
- uses: actions/checkout@v2
20
21
- - name: Set version
22
- run: echo "PACKAGE_VERSION=1.0.$(date +%Y%m%d).$GITHUB_RUN_NUMBER" >> $GITHUB_ENV
+ - name: Login to Octopus Deploy
+ uses: OctopusDeploy/login@v1
23
+ with:
24
+ server: https://biztalkbill.octopus.app
25
+ service_account_id: 966ed2db-5519-4b1c-aece-2fcf43c46837
26
+
27
+ - name: Set Version Number
28
+ id: version-generator
29
+ run: echo "version=$(date +'%Y.%m.%d').$GITHUB_RUN_NUMBER" >> $GITHUB_OUTPUT
30
31
- name: Create artifacts folder
32
run: |
0 commit comments