wisco 0.3.1 → 0.3.2

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: 72efcafcb9b1fdca5d4e8da95e9856e4a2c3920a8783323ff0ee533fafec1795
4
- data.tar.gz: 7b357fbf5264403871bcc3523d31258fdc3df60fb07ca20c5d77ed41e0049395
3
+ metadata.gz: c5e683d4cb7283e3e673a02b5829a55baf9c6bed86040559a7486492a45a41fb
4
+ data.tar.gz: 0f6492a182ba109c8d1fd1d8f607465e0cef50962c212bdad414972a978d5a91
5
5
  SHA512:
6
- metadata.gz: 5d31c9feb76d2241c72d20756942048e27e0bbd16309acbe50d004f3222da33e9c7fd24df47821fdb901154282003d3931548ab0d9dbb1914f5deb27a7b192cd
7
- data.tar.gz: 9d5e3f0b012e088720afea813f1dfe29241b57ba6da228554f1e6234b3eb8292e10b4dce3a56bd43960fba58e649cac4ef0d49763e600a3bce9184131847368c
6
+ metadata.gz: 8237b2e29e141a7305a5a4d042aa6708b45889e2ef7af4be30f4df32665044b2cec06ab08fc686fb458bcc228417e8f37883d6b0d35bcb811a81acff99c350b1
7
+ data.tar.gz: 699227a3116ba74cf5f0bdf4c686f72a0a10eeac87096f043dd155d59a176c99cb2d7c8a48e2e9eb154956238ecda1ce4f8a8ee19b33b4d9d678f65a0f457aae
@@ -0,0 +1,29 @@
1
+ <%#
2
+ ERB template for a GitHub Actions workflow to deploy a Workato connector
3
+ when changes are pushed to the main branch.
4
+
5
+ Template variables:
6
+ connector_name: The name of the connector file to deploy (e.g., 'Confluence.rb')
7
+ workato_base_url: The base URL for the Workato API (e.g., 'https://app.workato.com')
8
+ %>
9
+
10
+ name: Workato Connector Deployment
11
+
12
+ on:
13
+ push:
14
+ branches: [ main ]
15
+ paths:
16
+ - '<%= connector_name %>'
17
+
18
+ jobs:
19
+ deploy-to-workato:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v6
23
+
24
+ - name: Deploy connector to Workato
25
+ uses: billingtonm/Workato-Github-Actions/deploy-connector@v1
26
+ with:
27
+ connector-file: <%= connector_name %>
28
+ workato-base-url: <%= workato_base_url %>
29
+ api-token: ${{ secrets.WORKATO_DEV_ENVIRONMENT_API_TOKEN }}
data/lib/wisco/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Wisco
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wisco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mbillington
@@ -64,6 +64,7 @@ extra_rdoc_files: []
64
64
  files:
65
65
  - bin/wisco
66
66
  - lib/wisco.rb
67
+ - lib/wisco/assets/.github/workflows/deploy.yml.erb
67
68
  - lib/wisco/assets/.gitignore
68
69
  - lib/wisco/commands/exec.rb
69
70
  - lib/wisco/commands/fixtures.rb