From 8adb36f7900bfcd4d7111be906ca69674380e981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Sun, 26 Dec 2021 19:29:29 +0100 Subject: [PATCH] Add release GH action --- bitnami/drupal/.github/workflows/release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bitnami/drupal/.github/workflows/release.yaml diff --git a/bitnami/drupal/.github/workflows/release.yaml b/bitnami/drupal/.github/workflows/release.yaml new file mode 100644 index 000000000000..b3927b0660e2 --- /dev/null +++ b/bitnami/drupal/.github/workflows/release.yaml @@ -0,0 +1,13 @@ +name: Release +on: + push: + tags: + - "[0-9]+\..*-r[0-9]+" +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Release + uses: softprops/action-gh-release