appydave-tools 0.23.0 → 0.24.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb7c81970bea29e5f86aaebacc85292975b6924b2adb018fe30d1cd7c1448cfc
4
- data.tar.gz: 703de8b5395349f6150e624be408b7389e2ec5cbef2f95a229ddbdd1a904c210
3
+ metadata.gz: f804cce4dd83a357489fe3163e014593fc173888c8c5acb2f64c766b01030203
4
+ data.tar.gz: d1b0edb7dc10a3968fb803eb1a7584459d9d51dc64754e1b8cc7f1901a1c6793
5
5
  SHA512:
6
- metadata.gz: 4c714685a4a6611bf7fada4e6116de93a9054c5bd305c3733936501e3658d3e3d4310daf787da2d8a7967ec4b172926e6a7ae86b2695d284262989a8ead7850b
7
- data.tar.gz: acb79cb193a502a25847e8f31ba8a8266905bb87d4ec60f07ca2706534775b9f10387a23abf5692c3b0884542829067cd02f26baeac13bf2ff844b8169234567
6
+ metadata.gz: bd87280b7574f1a40690e48c5480c70db7f9aa8349b11d08b2e3977f46694eb285749b1e91ace744592f7a9f984545101577f0f39a43b96bca75c08e6c967840
7
+ data.tar.gz: d33a2f223ebc839a4b9d4a08ce93678e22e3383133db01802018bda97a1e26299965bfb2a0a6e2e315f2accd83c10e953b61ad8ed5d2d1062f4dc288d2a9d5c0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [0.23.0](https://github.com/appydave/appydave-tools/compare/v0.22.0...v0.23.0) (2025-11-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * use current user's AWS profile for S3 operations ([3029aff](https://github.com/appydave/appydave-tools/commit/3029aff202ac8ee4a79e335ea7f3cbc246c7dd54))
7
+ * use current user's AWS profile for S3 operations instead of brand-specific profiles ([8eea669](https://github.com/appydave/appydave-tools/commit/8eea669b43f6017470edfcac4632c8cc4cca408d))
8
+
1
9
  # [0.22.0](https://github.com/appydave/appydave-tools/compare/v0.21.2...v0.22.0) (2025-11-19)
2
10
 
3
11
 
@@ -158,6 +158,12 @@ module Appydave
158
158
  project_dir = File.join(brand_path, project_id)
159
159
  staging_dir = File.join(project_dir, 's3-staging')
160
160
 
161
+ # Ensure project directory exists before download
162
+ unless Dir.exist?(project_dir)
163
+ puts "📁 Creating project directory: #{project_id}"
164
+ FileUtils.mkdir_p(project_dir) unless dry_run
165
+ end
166
+
161
167
  s3_files = list_s3_files
162
168
 
163
169
  if s3_files.empty?
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.23.0'
5
+ VERSION = '0.24.0'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.23.0",
3
+ "version": "0.24.0",
4
4
  "description": "AppyDave YouTube Automation Tools",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appydave-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys