Skip to content

Commit 6dd96f6

Browse files
authored
Merge pull request #57 from cytopia/release-0.33
Release 0.33
2 parents 7122f06 + 7c58d23 commit 6dd96f6

7 files changed

+10
-339
lines changed

.github/workflows/action_branch.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ name: build
1111
# -------------------------------------------------------------------------------------------------
1212
on:
1313
push:
14-
14+
paths:
15+
- 'Makefile'
16+
- 'Dockerfiles/**'
17+
- 'tests/**'
18+
- '.github/workflows/action*.yml'
19+
- '.github/workflows/params.yml'
1520

1621
jobs:
1722

@@ -22,8 +27,7 @@ jobs:
2227
# (2/2) Build
2328
docker:
2429
needs: [params]
25-
#uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
26-
uses: ./.github/workflows/docker-name-version-flavour-arch.yml
30+
uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
2731
with:
2832
enabled: true
2933
can_deploy: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/release-') }}

.github/workflows/action_pull_request.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
# (2/2) Build
2525
docker:
2626
needs: [params]
27-
#uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
28-
uses: ./.github/workflows/docker-name-version-flavour-arch.yml
27+
uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
2928
with:
3029
enabled: true
3130
can_deploy: false

.github/workflows/action_schedule.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
# (2/2) Build
2525
docker:
2626
needs: [params]
27-
#uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
28-
uses: ./.github/workflows/docker-name-version-flavour-arch.yml
27+
uses: devilbox/github-actions/.github/workflows/docker-name-version-flavour-arch.yml@master
2928
with:
3029
enabled: true
3130
can_deploy: true

.github/workflows/docker-name-version-flavour-arch.yml

-251
This file was deleted.

.github/workflows/params.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: "[Set-Output] Matrix"
5353
id: set-matrix
5454
run: |
55-
echo "::set-output name=matrix::$( echo '${{ env.MATRIX }}' | jq -M -c )"
55+
echo "matrix=$( echo '${{ env.MATRIX }}' | jq -M -c )" >> $GITHUB_OUTPUT
5656
5757
- name: "[Set-Output] Matrix 'Refs' (master branch and latest tag)"
5858
id: set-refs

build/docker-build.sh

-40
This file was deleted.

build/docker-rebuild.sh

-40
This file was deleted.

0 commit comments

Comments
 (0)