Browse Source

Do not use args to speed up build.

pull/841/head
Sebastian 4 years ago
parent
commit
85c5a41ba9
  1. 12
      .github/workflows/dev.yml
  2. 2
      .github/workflows/marketplace-aws.yml
  3. 2
      .github/workflows/marketplace-azure.yml
  4. 2
      .github/workflows/marketplace-digitalocean.yml
  5. 2
      .github/workflows/marketplace-gcp.yml
  6. 2
      .github/workflows/marketplace-kubernetes.yml
  7. 2
      .github/workflows/marketplace-vultr.yml
  8. 6
      .github/workflows/release.yml

12
.github/workflows/dev.yml

@ -15,18 +15,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Calculate Version
env:
BUILD_NUMBER: ${{ github.run_number }}
run: |
echo "BUILD_NUMBER=$(($BUILD_NUMBER + 5967))" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v3.x
- name: Calculate Version
env:
BUILD_NUMBER: ${{ github.run_number }}
run: |
echo "BUILD_NUMBER=$(($BUILD_NUMBER + 5967))" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v1

2
.github/workflows/marketplace-aws.yml

@ -3,7 +3,7 @@ concurrency: marketplace-aws
on:
release:
types: [ released ]
types: [released]
jobs:
validate:

2
.github/workflows/marketplace-azure.yml

@ -3,7 +3,7 @@ concurrency: marketplace-azure
on:
release:
types: [ released ]
types: [released]
# az ad sp create-for-rbac --name squidex

2
.github/workflows/marketplace-digitalocean.yml

@ -3,7 +3,7 @@ concurrency: marketplace-digitalocean
on:
release:
types: [ released ]
types: [released]
jobs:
validate:

2
.github/workflows/marketplace-gcp.yml

@ -3,7 +3,7 @@ concurrency: marketplace-gcp
on:
release:
types: [ released ]
types: [released]
jobs:
validate:

2
.github/workflows/marketplace-kubernetes.yml

@ -3,7 +3,7 @@ concurrency: marketplace-kubernetes
on:
release:
types: [ released ]
types: [released]
jobs:
validate:

2
.github/workflows/marketplace-vultr.yml

@ -3,7 +3,7 @@ concurrency: marketplace-vultr
on:
release:
types: [ released ]
types: [released]
jobs:
validate:

6
.github/workflows/release.yml

@ -4,7 +4,7 @@ concurrency: release
on:
push:
tags:
- '*'
- "*"
jobs:
build:
@ -116,8 +116,8 @@ jobs:
id: version
uses: rishabhgupta/split-by@v1
with:
string: '${{ env.GITHUB_REF_SLUG }}'
split-by: '.'
string: "${{ env.GITHUB_REF_SLUG }}"
split-by: "."
- name: Get Image From Cache
uses: actions/cache@v2

Loading…
Cancel
Save