mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 13:39:49 +00:00
feat: update ckan-devstaller to v0.3.1
This commit is contained in:
parent
0e263202a1
commit
475bcc4932
21 changed files with 240 additions and 57 deletions
23
.github/workflows/run-ckan-only-install.yml
vendored
Normal file
23
.github/workflows/run-ckan-only-install.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Verify ckan-devstaller runs CKAN-only install successfully
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
ckanonlyinstall:
|
||||
name: Run ckan-devstaller with a CKAN-only install
|
||||
runs-on: ubuntu-22.04
|
||||
permissions:
|
||||
# For the git-auto-commit-action
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Rust stable toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Cache cargo deps and target folder
|
||||
uses: Swatinem/rust-cache@v2
|
||||
with:
|
||||
workspaces: ". -> target"
|
||||
- name: Run ckan-devstaller
|
||||
run: cargo run --release --verbose -- --ckan-version 2.11.4 --skip-interactive --skip-run
|
||||
Loading…
Add table
Add a link
Reference in a new issue