Skip to content

2.6.0 Atualização de API de cotação e adição de suporte a moeda Rial Saudito #2

2.6.0 Atualização de API de cotação e adição de suporte a moeda Rial Saudito

2.6.0 Atualização de API de cotação e adição de suporte a moeda Rial Saudito #2

Workflow file for this run

name: Encode and generate new release for plugin
on:
pull_request:
types: [ closed ]
branches: [ main ]
env:
PLUGIN_NAME: give-multimoeda
jobs:
release-build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
# Add plugin files to a root directory
- name: Make plugin root directory
run: "mkdir $PLUGIN_NAME && mv -t ./$PLUGIN_NAME ./plugin-updater ./includes *.php && find ./${{env.PLUGIN_NAME}} -type f -exec chmod 0644 {} + && find ./${{env.PLUGIN_NAME}} -type d -exec chmod 0755 {} + && ls -lah"
# Compact plugin as .zip
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: '${{ env.PLUGIN_NAME }}'
directory: '.'
filename: '${{ env.PLUGIN_NAME }}.zip'
exclusions: '*.git* /*node_modules/* .editorconfig'
# Update version tag
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: "2.6.0" # // TODO remove this after update
# Generate new release
- name: Generate new Release
uses: ncipollo/release-action@v1
with:
artifacts: "${{ env.PLUGIN_NAME }}.zip"
token: ${{ secrets.GITHUB_TOKEN }}
commit: "main"
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}