Create a new release #2
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: Create a new release | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Create .env file | |
run: cp .env.example .env | |
- name: Install jq | |
run: sudo apt-get install -y jq | |
- name: Install gzip | |
run: sudo apt-get install -y gzip | |
- name: Install npm dependencies | |
run: npm install | |
- name: Run auto.sh script | |
run: ./auto.sh Albanian English | |
- name: Tag the repository | |
id: tag | |
run: | | |
# See https://docs.github.com/en/get-started/using-git/dealing-with-special-characters-in-branch-and-tag-names | |
TAG=v$(date -Iseconds | sed 's/[T:\+]/-/g') | |
echo "$TAG" | |
echo "tag=$TAG" >> $GITHUB_OUTPUT | |
git tag -a $TAG -m "Published version $TAG" ${GITHUB_SHA} | |
git push origin $TAG | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Test auto release | |
tag_name: ${{ steps.tag.outputs.tag }} | |
prerelease: true | |
generate_release_notes: true | |
files: | | |
data/language/sq/en/abc-sq-en.zip | |
data/language/sq/en/abc-sq-en-ipa.zip |