Below you will find pages that utilize the taxonomy term “yakubique”
September 14, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.8.
This action is used across all versions by 4 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-utils/compare/v1.7...v1.8
None Sometimes it’s OK to do nothing
- name: Nothing to do uses: yakubique/json-utils@v1.8 with: input: '[1,2,3,4,5]' action: "none" # returns: [1,2,3,4,5]
March 29, 2024
Apply PostgreSQL migrations
Version updated for yakubique/postgresql-apply-migrations to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Apply PostgreSQL migrations Automatically applies SQL migrations to your database.
Supports PostgreSQL 9.4+
Action uses thomwright/postgres-migrations
A PostgreSQL migration library inspired by the Stack Overflow system described in Nick Craver’s blog.
Migrations are defined in sequential SQL files, for example:
migrations ├ 1_create-table.
March 25, 2024
List Artifacts
Version updated for yakubique/list-artifacts to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/list-artifacts/compare/v1...v1.1
List artifacts List a build artifacts that can be used by subsequent workflow steps
Usage workflow
Usage - name: List artifacts id: list uses: yakubique/list-artifacts@v1.1 with: name: test-* # Output example: $> echo "${{ steps.list.outputs.result }}" # [ # { # "name": "test-2", # "id": 1278446917, # "size": 140, # "createdAt": "2024-02-27T11:15:32.
March 25, 2024
Setup MinIO client
Version updated for yakubique/setup-minio-cli to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Setup MinIO client Sets up MinIO client (And it caches it, too!)
Usage workflow
Usage - name: Setup MinIO client uses: yakubique/setup-minio-cli@v1 - name: Test MinIO client run: | mc --help Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION mc_url string false "https://dl.min.io/client/mc/release/{platform}-{arch}/mc" URL to obtain mc from use_cache string false "true" MC doesn’t have real versions, you can pass use_cache=false to fetch latest version every time Outputs No outputs.
March 22, 2024
Upsert to PostgreSQL
Version updated for yakubique/upsert-postgresql to version v1.3.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/upsert-postgresql/compare/v1.2...v1.3
Upsert to PostgreSQL Upsert anything to PostgreSQL
Usage workflow
Insert or update provided JSON array (or file with JSON array) to database. Conflicts would be resolved by column_to_match
Usage - name: Upsert id: upsert uses: yakubique/upsert-postgresql@v1.3 with: input: | [{ "id": 1, "value": "c", "test": 1 }, { "id": 2, "value": "b", "test": 2 }] host: ${{ env.
March 22, 2024
Filter JSON
Version updated for yakubique/filter-json to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/filter-json/compare/v1.1...v1.2
filter-json GitHub Action filters JSON values based on predefined criteria, extracting and retaining desired values.
Usage For live examples, please see actions
uses: yakubique/filter-json@v1.2 with: input: '["1.0.0","1.1.0","1.2.0","1.2.1","1.3.0"]' values: "1.0.0" # result: '["1.1.0","1.2.0","1.2.1","1.3.0"]' With multiple values uses: yakubique/filter-json@v1.2 with: input: '["1.
March 22, 2024
Make JSON array flat
Version updated for yakubique/flat-json to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/flat-json/compare/v1...v1.1
Flat JSON Concat all arrays inside array and return
Usage workflow
Usage - name: Flat JSON id: list uses: yakubique/flat-json@v1.1 with: input: '[[1], [2,3], [4,5], [6]]' # result: "[1,2,3,4,5,6]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION input string true Input JSON string or file from_file string false "false" Load JSON from file to_file string false "false" Save result to file Outputs OUTPUT TYPE DESCRIPTION result string Result list in JSON format (or file if to_file = true)
March 22, 2024
Generate JSON array
Version updated for yakubique/generate-array to version v1.3.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/generate-array/compare/v1.2...v1.3
Generate Array Generate JSON array of length
Usage workflow
Usage - name: Generate Array id: list uses: yakubique/generate-array@v1.3 with: length: 10 startIndex: 1 template: "$item-{{index}}" # "["$item-1","$item-2","$item-3","$item-4","$item-5","$item-6","$item-7","$item-8","$item-9"]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION length string true Array length negativeOnly string false "false" Return only negative values positiveOnly string false "false" Return only positive values startIndex string false "0" What should be first index (default: 0) template string false By default array values are indexes, can be customized with template.
March 22, 2024
Add prefix/suffix to text/json
Version updated for yakubique/prefix-suffix to version v1.1.
This action is used across all versions by 3 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/prefix-suffix/compare/v1...v1.1
prefix-suffix Add prefix/suffix to text/json
Usage For live examples, please see actions
uses: yakubique/prefix-suffix@v1.1 with: input: "My awesome text" prefix: "##" suffix: '🥳' # result: "##My awesome text🥳" With flat-json uses: yakubique/prefix-suffix@v1.1 with: input: '["1.0.0","1.1.0","1.2.0","1.2.1","1.3.0"]' prefix: 'v' type: 'flat-json' # result: "["v1.
March 22, 2024
Generate random number
Version updated for yakubique/random-number to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/random-number/compare/v1...v1.1
Random number Github Action that returns a random number
Usage workflow
Usage - name: Random number uses: yakubique/random-number@v1.1 Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION max string false "10" The max value of the random number (max included) min string false "1" The min value of the random number (min included) Outputs OUTPUT TYPE DESCRIPTION number string Generated number
March 18, 2024
Generate random number
Version updated for yakubique/random-number to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Random number Github Action that returns a random number
Usage workflow
Usage - name: Random number uses: yakubique/random-number@v1 Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION max string false "10" The max value of the random number (max included) min string false "1" The min value of the random number (min included) Outputs OUTPUT TYPE DESCRIPTION number string Generated number Full Changelog: https://github.
March 17, 2024
Generate JSON array
Version updated for yakubique/generate-array to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/generate-array/compare/v1.1...v1.2
Generate Array Generate JSON array of length
Usage workflow
Usage - name: Generate Array id: list uses: yakubique/generate-array@v1.1 with: length: 10 startIndex: 1 template: "$item-{{index}}" # "["$item-1","$item-2","$item-3","$item-4","$item-5","$item-6","$item-7","$item-8","$item-9"]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION length string true Array length negativeOnly string false "false" Return only negative values positiveOnly string false "false" Return only positive values startIndex string false "0" What should be first index (default: 0) template string false By default array values are indexes, can be customized with template.
March 17, 2024
Make JSON array flat
Version updated for yakubique/flat-json to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/flat-json/commits/v1
Flat JSON Concat all arrays inside array and return
Usage workflow
Usage - name: Flat JSON id: list uses: yakubique/flat-json@v1 with: input: '[[1], [2,3], [4,5], [6]]' # result: "[1,2,3,4,5,6]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION input string true Input JSON string or file from_file string false "false" Load JSON from file to_file string false "false" Save result to file Outputs OUTPUT TYPE DESCRIPTION result string Result list in JSON format (or file if to_file = true)
March 17, 2024
Grab with limits
Version updated for yakubique/grab-limited to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/grab-limited/commits/v1
Grab with limits Grab URLs with timelimit
Usage workflow
Usage - name: Grab with limits id: list uses: yakubique/grab-limited@v1 with: name: test-* Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION concurrency string false "1" Amount of requests at time endpoints string true Endpoints to call (JSON array or file) from_file string false "false" Load endpoints from JSON file headers string false "{}" JSON string with headers to include interval string true Interval between queries (ms) method string false "GET" HTTP call method retry string false "1" Amount of retries retry_pause string false "300" Pause between retries (ms) to_file string false "false" Save result to JSON file Outputs OUTPUT TYPE DESCRIPTION result string Result list in JSON format OR path to file
March 17, 2024
Upsert to PostgreSQL
Version updated for yakubique/upsert-postgresql to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/upsert-postgresql/compare/v1.1...v1.2
Upsert to PostgreSQL Upsert anything to PostgreSQL
Usage workflow
Insert or update provided JSON array (or file with JSON array) to database. Conflicts would be resolved by column_to_match
Usage - name: Upsert id: upsert uses: yakubique/upsert-postgresql@v1.2 with: input: | [{ "id": 1, "value": "c", "test": 1 }, { "id": 2, "value": "b", "test": 2 }] host: ${{ env.
March 16, 2024
JSONify array
Version updated for yakubique/jsonify-array to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes JSONify array Full Changelog: https://github.com/yakubique/jsonify-array/compare/v1...v1.1 Replace field in JSON with its JSON.stringify() version
Usage workflow
Usage - name: JSONify array uses: yakubique/jsonify-array@v1 with: input: | [ { "obj": {"id": 1 } } ] type: "nested-json" key: "obj" # [ { "obj": "{\"id\":1}" } ] Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION input string true JSON to modify type string false "flat-json" Type of input data ["flat-json", "nested-json"] (default: “flat-json”) key string false If type="nested-json" - which key should be used from_file string false "false" Load json from file to_file string false "false" Save result to file Outputs OUTPUT TYPE DESCRIPTION result string Filepath or JSON
March 4, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.6.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes json-utils Full Changelog: https://github.com/yakubique/json-utils/compare/v1.5...v1.6 A collection of handy utilities for working with JSON in GitHub Actions, making it easier to manipulate JSON data
For live examples, please see actions
Methods:
Diff Sort Pick Get Concat Chunk 🆕 Diff Flat Order and values are taken from input.
March 1, 2024
Upsert to PostgreSQL
Version updated for yakubique/upsert-postgresql to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Upsert to PostgreSQL Upsert anything to PostgreSQL Full Changelog: https://github.com/yakubique/upsert-postgresql/compare/v1...v1.1
Usage workflow
Insert or update provided JSON array (or file with JSON array) to database. Conflicts would be resolved by column_to_match
Usage - name: Upsert id: upsert uses: yakubique/upsert-postgresql@v1.1 with: input: | [{ "id": 1, "value": "c", "test": 1 }, { "id": 2, "value": "b", "test": 2 }] host: ${{ env.
March 1, 2024
Generate JSON array
Version updated for yakubique/generate-array to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Generate Array Generate JSON array of length Full Changelog: https://github.com/yakubique/generate-array/compare/v1...v1.1
Usage workflow
Usage - name: Generate Array id: list uses: yakubique/generate-array@v1.1 with: length: 10 startIndex: 1 template: "$item-{{index}}" # "["$item-1","$item-2","$item-3","$item-4","$item-5","$item-6","$item-7","$item-8","$item-9"]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION length string true Array length negativeOnly string false "false" Return only negative values positiveOnly string false "false" Return only positive values startIndex string false "0" What should be first index (default: 0) template string false By default array values are indexes, can be customized with template.
March 1, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.5.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes json-utils A collection of handy utilities for working with JSON in GitHub Actions, making it easier to manipulate JSON data
Full Changelog: https://github.com/yakubique/json-utils/compare/v1.4...v1.5
For live examples, please see actions
Methods:
Diff Sort Pick Get Concat 🆕 Diff Flat Order and values are taken from input.
February 28, 2024
Filter JSON
Version updated for yakubique/filter-json to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes filter-json GitHub Action filters JSON values based on predefined criteria, extracting and retaining desired values. Full Changelog: https://github.com/yakubique/filter-json/compare/v1...v1.1
Usage For live examples, please see actions
uses: yakubique/filter-json@v1.1 with: input: '["1.0.0","1.1.0","1.2.0","1.2.1","1.3.0"]' values: "1.0.0" # result: '["1.1.0","1.2.0","1.2.1","1.3.0"]' With multiple values uses: yakubique/filter-json@v1.1 with: input: '["1.
February 28, 2024
Generate JSON array
Version updated for yakubique/generate-array to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Generate Array Full Changelog: https://github.com/yakubique/generate-array/commits/v1 Generate JSON array of length
Usage workflow
Usage - name: Generate Array id: list uses: yakubique/generate-array@v1 with: length: 10 startIndex: 1 template: "$item-{{index}}" # "["$item-1","$item-2","$item-3","$item-4","$item-5","$item-6","$item-7","$item-8","$item-9"]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION length string true Array length startIndex string false "0" What should be first index (default: 0) template string false By default array values are indexes, can be customized with template.
February 28, 2024
JSONify array
Version updated for yakubique/jsonify-array to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes JSONify array Replace field in JSON with its JSON.stringify() version Full Changelog: https://github.com/yakubique/jsonify-array/commits/v1
Usage workflow
Usage - name: JSONify array uses: yakubique/jsonify-array@v1 with: input: | [ { "obj": {"id": 1 } } ] type: "nested-json" key: "obj" # [ { "obj": "{\"id\":1}" } ] Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION input string true JSON to modify type string false "flat-json" Type of input data ["flat-json", "nested-json"] (default: “flat-json”) key string false If type="nested-json" - which key should be used from_file string false "false" Load json from file to_file string false "false" Save result to file Outputs OUTPUT TYPE DESCRIPTION result string Filepath or JSON
February 28, 2024
Upsert to PostgreSQL
Version updated for yakubique/upsert-postgresql to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Upsert to PostgreSQL Upsert anything to PostgreSQL Full Changelog: https://github.com/yakubique/upsert-postgresql/commits/v1
Usage workflow
Insert or update provided JSON array (or file with JSON array) to database. Conflicts would be resolved by column_to_match
Usage - name: Upsert id: upsert uses: yakubique/upsert-postgresql@v1 with: input: | [{ "id": 1, "value": "c", "test": 1 }, { "id": 2, "value": "b", "test": 2 }] host: ${{ env.
February 27, 2024
list-github-releases
Version updated for yakubique/github-releases to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes github-releases Full Changelog: https://github.com/yakubique/github-releases/compare/v1...v1.2 Get list of GitHub releases for repository
Usage For live examples, please see actions
uses: yakubique/github-releases@v1.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: repository: yakubique/orogene With pre-releases uses: yakubique/github-releases@v1.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: repository: yakubique/orogene pre: 'true' Sort versions uses: yakubique/github-releases@v1.
February 27, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.4.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes json-utils Full Changelog: https://github.com/yakubique/json-utils/compare/v1.3...v1.4 A collection of handy utilities for working with JSON in GitHub Actions, making it easier to manipulate JSON data
For live examples, please see actions
Methods:
Diff Sort Pick Get Diff Flat Order and values are taken from input.
February 27, 2024
List Artifacts
Version updated for yakubique/list-artifacts to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes List artifacts Full Changelog: https://github.com/yakubique/list-artifacts/commits/v1 List a build artifacts that can be used by subsequent workflow steps
Usage workflow
Usage - name: List artifacts id: list uses: yakubique/list-artifacts@v1 with: name: test-* # Output example: $> echo "${{ steps.list.outputs.result }}" # [ # { # "name": "test-2", # "id": 1278446917, # "size": 140, # "createdAt": "2024-02-27T11:15:32.
February 27, 2024
npm-versions
Version updated for yakubique/npm-versions to version v1.2.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes npm-versions Full Changelog: https://github.com/yakubique/npm-versions/compare/v1...v1.2 Get list of package’s versions from NPM registry
Usage For live examples, please see actions
uses: yakubique/npm-versions@v1.2 with: package: emoji-hash Custom registry uses: yakubique/npm-versions@v1.2 with: package: emoji-hash registry: https://npm.my-company.org Sort versions uses: yakubique/npm-versions@v1.2 with: package: emoji-hash sortVersions: 'desc' Use output steps: - uses: yakubique/npm-versions@v1.
February 27, 2024
Query to PostgreSQL
Version updated for yakubique/query-postgresql to version v1.2.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes query-postgresql Full Changelog: https://github.com/yakubique/query-postgresql/compare/v1.1...v1.2 Make query to PostgreSQL and return JSON
Usage For live examples, please see actions
uses: yakubique/query-postgresql@v1.2 with: query: | select true as result host: ${{ env.PG_HOST }} port: ${{ env.PG_PORT }} username: ${{ env.PG_USER }} password: ${{ env.
February 26, 2024
JSON array to files
Version updated for yakubique/json-items-to-files to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-items-to-files/compare/v1.1...v1.2
February 26, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.3.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-utils/compare/v1.2...v1.3
February 26, 2024
Query to PostgreSQL
Version updated for yakubique/query-postgresql to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/query-postgresql/compare/v1...v1.1
February 25, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.2.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-utils/compare/v1.1...v1.2
February 12, 2024
JSON array to files
Version updated for yakubique/json-items-to-files to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-items-to-files/compare/v1...v1.1
February 12, 2024
JSON array to files
Version updated for yakubique/json-items-to-files to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-items-to-files/commits/v1
February 11, 2024
JSON Utils
Version updated for yakubique/json-utils to version v1.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/json-utils/compare/v1...v1.1
Pick Creates an object composed of the picked object properties.
- name: Pick "name" uses: yakubique/json-utils@v1.1 with: input: '[{"name":"v0.3.26","tag_name":"v0.3.26","prerelease":false,"published_at":"2023-08-07T09:43:28Z"},{"name":"v0.3.22","tag_name":"v0.3.22","prerelease":false,"published_at":"2023-11-12T10:58:00Z"},{"name":"v0.3.23","tag_name":"v0.3.23","prerelease":false,"published_at":"2023-11-12T10:59:27Z"},{"name":"v0.3.25","tag_name":"v0.3.25","prerelease":false,"published_at":"2023-11-12T11:01:20Z"},{"name":"v0.3.31","tag_name":"v0.3.31","prerelease":false,"published_at":"2023-11-12T11:17:17Z"},{"name":"v0.3.34","tag_name":"v0.3.34","prerelease":false,"published_at":"2023-11-12T11:21:59Z"}]' action: "pick" key: "name" Works with multiple comma-separated keys
- name: Pick "name" uses: yakubique/json-utils@v1.1 with: input: '[{"name":"v0.3.26","tag_name":"v0.3.26","prerelease":false,"published_at":"2023-08-07T09:43:28Z"},{"name":"v0.3.22","tag_name":"v0.3.22","prerelease":false,"published_at":"2023-11-12T10:58:00Z"},{"name":"v0.3.23","tag_name":"v0.3.23","prerelease":false,"published_at":"2023-11-12T10:59:27Z"},{"name":"v0.3.25","tag_name":"v0.3.25","prerelease":false,"published_at":"2023-11-12T11:01:20Z"},{"name":"v0.3.31","tag_name":"v0.3.31","prerelease":false,"published_at":"2023-11-12T11:17:17Z"},{"name":"v0.3.34","tag_name":"v0.3.34","prerelease":false,"published_at":"2023-11-12T11:21:59Z"}]' action: "pick" key: "name,prerelease" # returns: [{name:v0.
February 11, 2024
Query to PostgreSQL
Version updated for yakubique/query-postgresql to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes query-postgresql Make query to PostgreSQL and return JSON Full Changelog: https://github.com/yakubique/query-postgresql/commits/v1
Usage For live examples, please see actions
uses: yakubique/query-postgresql@v1 with: query: | select true as result host: ${{ env.PG_HOST }} port: ${{ env.PG_PORT }} username: ${{ env.PG_USER }} password: ${{ env.
August 12, 2023
It's over
Version updated for yakubique/over to version v1.0.0.
This publisher is shown verified by GitHub. This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/over/compare/v0.0.3...v1.0.0
August 6, 2023
Yet another MinIO Download
Version updated for yakubique/minio-download to version v1.1. This action is used across all versions by 1 repositories.
Go to the GitHub Marketplace to find the latest changes.
August 6, 2023
Yet another MinIO Download
Version updated for yakubique/minio-download to version v1.1.1. This action is used across all versions by 1 repositories.
Go to the GitHub Marketplace to find the latest changes.
August 6, 2023
Yet another MinIO Upload
Version updated for yakubique/minio-upload to version v1.1.1. This action is used across all versions by 1 repositories.
Go to the GitHub Marketplace to find the latest changes.
August 6, 2023
Yet another MinIO Upload
Version updated for yakubique/minio-upload to version v1.1.3. This action is used across all versions by 1 repositories.
Go to the GitHub Marketplace to find the latest changes.