diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dockerhub.yml | 2 | ||||
-rw-r--r-- | .github/workflows/integration.yml | 6 | ||||
-rw-r--r-- | .github/workflows/release.yml | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 5f31708..4043a2c 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml | |||
@@ -50,4 +50,4 @@ jobs: | |||
50 | tags: | | 50 | tags: | |
51 | b4bz/homer:${{env.IMAGE_TAG}} | 51 | b4bz/homer:${{env.IMAGE_TAG}} |
52 | ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} | 52 | ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} |
53 | platforms: linux/amd64,linux/arm/v7,linux/arm64 | 53 | platforms: linux/amd64,linux/arm/v7,linux/arm/v6,linux/arm64 |
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3177a5e..937bc89 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml | |||
@@ -22,16 +22,16 @@ jobs: | |||
22 | steps: | 22 | steps: |
23 | - | 23 | - |
24 | name: Checkout | 24 | name: Checkout |
25 | uses: actions/checkout@v3 | 25 | uses: actions/checkout@v4 |
26 | - | 26 | - |
27 | name: Use Node.js ${{ matrix.node-version }} | 27 | name: Use Node.js ${{ matrix.node-version }} |
28 | uses: actions/setup-node@v2 | 28 | uses: actions/setup-node@v4 |
29 | with: | 29 | with: |
30 | node-version: ${{ matrix.node-version }} | 30 | node-version: ${{ matrix.node-version }} |
31 | cache: 'yarn' | 31 | cache: 'yarn' |
32 | - | 32 | - |
33 | name: install dependencies | 33 | name: install dependencies |
34 | run: yarn install | 34 | run: yarn install --frozen-lockfile --non-interactive |
35 | - | 35 | - |
36 | name: Check code style & potentential issues | 36 | name: Check code style & potentential issues |
37 | run: yarn lint | 37 | run: yarn lint |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d554a5f..44a128d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
@@ -12,11 +12,11 @@ jobs: | |||
12 | steps: | 12 | steps: |
13 | - | 13 | - |
14 | name: Checkout | 14 | name: Checkout |
15 | uses: actions/checkout@v3 | 15 | uses: actions/checkout@v4 |
16 | - | 16 | - |
17 | name: Build project | 17 | name: Build project |
18 | run: | | 18 | run: | |
19 | yarn install | 19 | yarn install --frozen-lockfile --non-interactive |
20 | yarn build | 20 | yarn build |
21 | - | 21 | - |
22 | name: Create artifact | 22 | name: Create artifact |
@@ -25,7 +25,7 @@ jobs: | |||
25 | - | 25 | - |
26 | name: Create Release | 26 | name: Create Release |
27 | id: create_release | 27 | id: create_release |
28 | uses: softprops/action-gh-release@v1 | 28 | uses: softprops/action-gh-release@v2 |
29 | with: | 29 | with: |
30 | token: ${{ secrets.GITHUB_TOKEN }} | 30 | token: ${{ secrets.GITHUB_TOKEN }} |
31 | generate_release_notes: true | 31 | generate_release_notes: true |