Merge pull request #329 from emulsify-ds/release-sdc-support #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Semantic Release on Merge | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Attempt Semantic Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add remote SSH Key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.DRUPAL_ORG_SSH_KEY }} | |
config: ${{ secrets.SSH_CONFIG }} | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- name: Sync release tags to Drupal.org Project | |
if: steps.semantic.outputs.new_release_published == 'true' | |
run: | | |
git remote add drupal-org '${{ secrets.DRUPAL_REPO_URL }}' | |
git push drupal-org --tags | |
git checkout main | |
git push drupal-org main |