Skip to content

Commit 4e44d88

Browse files
github-actions[bot]RadxaYuntian
authored andcommitted
chore: templates generated by RadxaOS-SDK/rsdk@d69c907
1 parent 04a4bec commit 4e44d88

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"ghcr.io/devcontainers/features/nix:1": {
2020
"version": "latest",
2121
"packages": "cachix,direnv,devenv",
22+
"useAttributePath": true,
2223
"extraNixConfig": [
2324
"experimental-features = nix-command flakes",
2425
// Uncomment below to speed up container building in China

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "artifacts_path=$(realpath ..)" | tee -a "$GITHUB_OUTPUT"
4747
shell: "bash"
4848
- name: "Upload artifacts"
49-
uses: "actions/upload-artifact@v4"
49+
uses: "actions/upload-artifact@v5"
5050
with:
5151
name: "${{ github.event.repository.name }}"
5252
path: |
@@ -73,7 +73,7 @@ jobs:
7373
- name: "Checkout"
7474
uses: "actions/checkout@v5"
7575
- name: "Download generated debs"
76-
uses: "actions/download-artifact@v5"
76+
uses: "actions/download-artifact@v6"
7777
with:
7878
name: "${{ github.event.repository.name }}"
7979
path: ".artifacts"

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
PROJECT ?= radxa-overlays
99
CUSTOM_DEBUILD_ENV ?= DEB_BUILD_OPTIONS='parallel=1'
10+
CUSTOM_DEBUILD_ARG ?=
1011

1112
.DEFAULT_GOAL := all
1213
.PHONY: all
@@ -99,7 +100,7 @@ pre_debuild:
99100

100101
.PHONY: debuild
101102
debuild:
102-
$(CUSTOM_DEBUILD_ENV) debuild --no-lintian --lintian-hook "lintian --fail-on error,warning --suppress-tags-from-file $(PWD)/debian/common-lintian-overrides -- %p_%v_*.changes" --no-sign -b
103+
$(CUSTOM_DEBUILD_ENV) debuild --no-lintian --lintian-hook "lintian --fail-on error,warning --suppress-tags-from-file $(PWD)/debian/common-lintian-overrides -- %p_%v_*.changes" --no-sign -b $(CUSTOM_DEBUILD_ARG)
103104

104105
.PHONY: post_debuild
105106
post_debuild:

0 commit comments

Comments
 (0)