@dword-design/base-config-app 9.0.4 → 9.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/playbook.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- - name: Deploy app with deploy_helper (artifact + auto-link shared)
3
- hosts: app
4
- become: true
2
+ - name: Production
3
+ hosts: servers
4
+ become: yes
5
5
 
6
6
  vars:
7
7
  # Base paths
@@ -26,7 +26,7 @@
26
26
  - name: Upload artifact to server
27
27
  ansible.builtin.copy:
28
28
  src: "{{ artifact_local_path }}"
29
- dest: "/tmp/{{ app_name }}-{{ dh.release }}.tgz"
29
+ dest: "/tmp/{{ app_name }}-{{ dh.new_release }}.tgz"
30
30
  mode: "0644"
31
31
 
32
32
  - name: Ensure new release directory exists
@@ -37,7 +37,7 @@
37
37
 
38
38
  - name: Extract artifact into new release path
39
39
  ansible.builtin.unarchive:
40
- src: "/tmp/{{ app_name }}-{{ dh.release }}.tgz"
40
+ src: "/tmp/{{ app_name }}-{{ dh.new_release }}.tgz"
41
41
  dest: "{{ dh.new_release_path }}"
42
42
  remote_src: true
43
43
 
@@ -72,7 +72,7 @@
72
72
  - name: "Finalize: switch current -> new release (atomic)"
73
73
  community.general.deploy_helper:
74
74
  path: "{{ deploy_to }}"
75
- release: "{{ dh.release }}"
75
+ release: "{{ dh.new_release }}"
76
76
  state: finalize
77
77
 
78
78
  - name: Restart app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-app",
3
- "version": "9.0.4",
3
+ "version": "9.0.6",
4
4
  "repository": "dword-design/base-config-app",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",