Skip to content

chore(ci): modify CI/CD process #5

chore(ci): modify CI/CD process

chore(ci): modify CI/CD process #5

Workflow file for this run

name: create_release_when_tagged
on:
workflow_dispatch:
# During test, to delete
pull_request:
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Execute shell script
run: |
chmod +x ./build-deploy.sh
./build-deploy.sh
ls -al
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repository: leboncoin/zoekt
tag_name: deploy-${{ github.ref_name}}
draft: false
prerelease: false