Skip to content

Update the version to a testable one #19

Update the version to a testable one

Update the version to a testable one #19

name: Release
on:
push:
workflow_dispatch:
inputs:
pre-release:
required: false
type: boolean
default: false
description: "This release will be labeled as non-production ready"
# Monitor pull request events
pull_request:
types:
- closed
# TODO: 'develop' is for testing only, change this value to 'main' before merging to main
branches:
- develop
jobs:
release:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
# TODO: Remove after finalising
- name: Checkout
uses: actions/checkout@v4
- name: Debug
run: |
ls -la
cat VERSION
- name: Prepare the next main release
uses: Adyen/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
# TODO: change this value to 'main' before merging to 'main', this value should be the same as 'on->pull_request->branches'
develop-branch: ECP-9213
version-files: composer.json
release-title: Adyen Magento-2 Plugin
pre-release: ${{ inputs.pre-release || false }}
separator: .pre.beta