link #32
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: 'publish' | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
- '*' | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: 'Build and publish' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
env: | |
SKIP_YARN_COREPACK_CHECK: true | |
- run: | | |
corepack enable | |
- run: | | |
yarn set version berry | |
- name: setup git config | |
run: | | |
git config user.name "Salim Kanoun" | |
git config user.email "[email protected]" | |
- uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: ghcr.io/pixilib/gaelo-flow-frontend | |
tags: | | |
type=ref,event=branch | |
type=ref,event=tag | |
latest | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to github registery | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: 'salimkanoun' | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- run: yarn install | |
- name: 'set version' | |
if: github.ref_type == 'tag' | |
run: yarn version --new-version ${{ github.ref_name }} | |
- run : yarn build | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
pull: true | |
tags: ${{ steps.meta.outputs.tags }} | |
permissions: | |
contents: read | |
packages: write |