Skip to content

Commit fb360ad

Browse files
author
Unify Automated
committed
Release ver_1.7.0
1 parent e4fdf37 commit fb360ad

File tree

15,718 files changed

+209894
-3527913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

15,718 files changed

+209894
-3527913
lines changed
File renamed without changes.

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"bridge_binaries.zip" filter=lfs diff=lfs merge=lfs -text
21
"zap-2022.1.10.dmg" filter=lfs diff=lfs merge=lfs -text
32
"slc_cli_mac.zip" filter=lfs diff=lfs merge=lfs -text
43
"zap_apack_mac.zip" filter=lfs diff=lfs merge=lfs -text

.github/workflows/build.yml

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,35 @@
1-
name: Docker Image CI
1+
# YAML -*- mode: yaml; tab-width: 2; indent-tabs-mode: nil; coding: utf-8 -*-
2+
---
23

3-
on:
4+
name: Build in docker
5+
6+
on: # yamllint disable-line rule:truthy
47
push:
5-
branches: [ '*' ]
6-
pull_request:
7-
branches: [ '*' ]
88

99
jobs:
1010
build:
11+
env:
12+
project-name: unifysdk # This should be lowercase for docker (and aligned)
1113
runs-on: ubuntu-22.04
1214
steps:
13-
- uses: actions/checkout@v4.1.1
14-
with:
15-
fetch-depth: 0
16-
- name: Build Docker image from sources
17-
run: docker build .
15+
- uses: actions/checkout@v4.1.1
16+
with:
17+
fetch-depth: 0
18+
- id: describe
19+
name: Describe HEAD
20+
run: >-
21+
echo "describe=$(git describe --tags --always || echo 0)"
22+
| tee $GITHUB_OUTPUT
23+
- name: Build Docker image from sources
24+
run: docker build --tag "${{ env.project-name }}:latest" .
25+
- name: Extract artifacts
26+
run: >-
27+
container=$(docker create "${{ env.project-name }}:latest")
28+
&& docker cp
29+
${container}:/usr/local/opt/${{ env.project-name }}/build/dist .
30+
- name: Upload artifacts
31+
uses: actions/upload-artifact@v4
32+
with:
33+
# yamllint disable-line
34+
name: ${{ github.event.repository.name }}-${{ steps.describe.outputs.describe }}
35+
path: dist/

0 commit comments

Comments
 (0)