Adjust billbee export to work properly (localize price and date field) #125
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: Django CI | |
on: | |
push: | |
branches: [ "main", "staging" ] | |
jobs: | |
build: | |
environment: ${{ github.ref_name }} | |
name: "Deploy to ${{ github.ref_name }}" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
env: | |
SSH_USER: ${{ secrets.SSH_USER }} | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
SSH_HOST: ${{ secrets.SSH_HOST }} | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$SSH_KEY" > ~/.ssh/server.key | |
chmod 600 ~/.ssh/server.key | |
cat >>~/.ssh/config <<END | |
Host server | |
HostName $SSH_HOST | |
User $SSH_USER | |
IdentityFile ~/.ssh/server.key | |
StrictHostKeyChecking no | |
END | |
- name: Deploy to Server | |
env: | |
ROOT_DIR: ${{ vars.ROOT_DIR }} | |
ENV_DIR: ${{ vars.ENV_DIR }} | |
BRANCH: ${{ github.ref_name }} | |
APP_NAME: ${{ vars.APP_NAME }} | |
run: | | |
ssh server " | |
cd $ROOT_DIR && | |
git pull origin $BRANCH && | |
source $ENV_DIR && | |
pip install -r requirements/production.txt && | |
python manage.py migrate --settings=config.settings.production && | |
python manage.py collectstatic --noinput --settings=config.settings.production && | |
supervisorctl restart $APP_NAME | |
" |